org.sixdml.exceptions
Class NonExistentIndexException

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

public class NonExistentIndexException
extends SixdmlException

 NonExistentIndexException.java

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

 Created: Thu Jan 10 07:01:26 2002
 

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

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

NonExistentIndexException

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

NonExistentIndexException

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

NonExistentIndexException

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

NonExistentIndexException

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