org.sixdml.exceptions
Class IndexAlreadyExistsException

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

public class IndexAlreadyExistsException
extends SixdmlException

 IndexAlreadyExistsException.java

 Thrown when an attempt is made to add an index to a collection when one with the 
 same name already exists in that collection. 

 Created: Fri Jan 11 00:44:31 2002
 

Version:
1.0
Author:
Dare Obasanjo
See Also:
SixdmlCollection.addIndex(SixdmlIndex), Serialized Form

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

IndexAlreadyExistsException

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

IndexAlreadyExistsException

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

IndexAlreadyExistsException

public IndexAlreadyExistsException(String message,
                                   Throwable cause)
Constructs a IndexAlreadyExistsException with the specified detail message and cause.

IndexAlreadyExistsException

public IndexAlreadyExistsException(Throwable cause)
Constructs a IndexAlreadyExistsException with the specified cause.