org.sixdml.exceptions
Class NonExistentDocumentException

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

public class NonExistentDocumentException
extends SixdmlException

 NonExistentDocumentException.java

 Thrown when an attempt is made to delete a document that does not exist. 

 Created: Thu Jan 10 07:01:26 2002
 

Version:
1.0
Author:
Dare Obasanjo
See Also:
SixdmlCollection.removeDocument(String), Serialized Form

Fields inherited from class org.sixdml.exceptions.SixdmlException
sixmlExceptionCause
 
Fields inherited from class java.lang.Throwable
backtrace, detailMessage, serialVersionUID
 
Constructor Summary
NonExistentDocumentException()
          Constructs a NonExistentDocumentException with no detail message.
NonExistentDocumentException(String message)
          Constructs a NonExistentDocumentException with the specified detail message.
NonExistentDocumentException(String message, Throwable cause)
          Constructs a NonExistentDocumentException with the specified cause.
NonExistentDocumentException(Throwable cause)
          Constructs a NonExistentDocumentException 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

NonExistentDocumentException

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

NonExistentDocumentException

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

NonExistentDocumentException

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

NonExistentDocumentException

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