org.sixdml.exceptions
Class DocumentAlreadyExistsException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--org.sixdml.exceptions.SixdmlException
                    |
                    +--org.sixdml.exceptions.DocumentAlreadyExistsException
All Implemented Interfaces:
Serializable

public class DocumentAlreadyExistsException
extends SixdmlException

 DocumentAlreadyExistsException.java

 Thrown when an attempt is made to add a document to a collection that has the 
 same name as one that already exists in the collection. 

 Created: Thu Jan 10 05:35:48 2002
 

Version:
1.0
Author:
Dare Obasanjo
See Also:
SixdmlCollection.insertDocument(String, String), SixdmlCollection.insertDocument(String, java.net.URL), Serialized Form

Fields inherited from class org.sixdml.exceptions.SixdmlException
sixmlExceptionCause
 
Fields inherited from class java.lang.Throwable
backtrace, detailMessage, serialVersionUID
 
Constructor Summary
DocumentAlreadyExistsException()
          Constructs a DocumentAlreadyExistsException with no detail message.
DocumentAlreadyExistsException(String message)
          Constructs a DocumentAlreadyExistsException with the specified detail message.
DocumentAlreadyExistsException(String message, Throwable cause)
          Constructs a DocumentAlreadyExistsException with the specified cause.
DocumentAlreadyExistsException(Throwable cause)
          Constructs a DocumentAlreadyExistsException with the specified detail message and cause.
 
Methods inherited from class org.sixdml.exceptions.SixdmlException
getCause
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, printStackTrace0, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait
 

Constructor Detail

DocumentAlreadyExistsException

public DocumentAlreadyExistsException()
Constructs a DocumentAlreadyExistsException with no detail message.

DocumentAlreadyExistsException

public DocumentAlreadyExistsException(String message)
Constructs a DocumentAlreadyExistsException with the specified detail message.

DocumentAlreadyExistsException

public DocumentAlreadyExistsException(Throwable cause)
Constructs a DocumentAlreadyExistsException with the specified detail message and cause.

DocumentAlreadyExistsException

public DocumentAlreadyExistsException(String message,
                                      Throwable cause)
Constructs a DocumentAlreadyExistsException with the specified cause.