org.sixdml.exceptions
Class UnsupportedIndexTypeException

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

public class UnsupportedIndexTypeException
extends SixdmlException

 UnsupportedIndexTypeException.java
 
 Thrown when an attempt is made to add an index to a collection in a database 
 that does not support that type of index. 

 Created: Fri Jan 11 00:40:46 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
UnsupportedIndexTypeException()
          Constructs a UnsupportedIndexTypeException with no detail message.
UnsupportedIndexTypeException(String message)
          Constructs a UnsupportedIndexTypeException with the specified detail message.
UnsupportedIndexTypeException(String message, Throwable cause)
          Constructs a UnsupportedIndexTypeException with the specified detail message and cause.
UnsupportedIndexTypeException(Throwable cause)
          Constructs a UnsupportedIndexTypeException 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

UnsupportedIndexTypeException

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

UnsupportedIndexTypeException

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

UnsupportedIndexTypeException

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

UnsupportedIndexTypeException

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