Package edu.caltech.nanodb.indexes
Class IndexException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- edu.caltech.nanodb.server.NanoDBException
-
- edu.caltech.nanodb.storage.StorageException
-
- edu.caltech.nanodb.indexes.IndexException
-
- All Implemented Interfaces:
java.io.Serializable
public class IndexException extends StorageException
This class represents errors that occur while manipulating indexes.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IndexException()
Construct an index exception with no message.IndexException(java.lang.String msg)
Construct an index exception with the specified message.IndexException(java.lang.String msg, java.lang.Throwable cause)
Construct an index exception with the specified message and cause.IndexException(java.lang.Throwable cause)
Construct an index exception with the specified cause and no message.
-
-
-
Constructor Detail
-
IndexException
public IndexException()
Construct an index exception with no message.
-
IndexException
public IndexException(java.lang.String msg)
Construct an index exception with the specified message.
-
IndexException
public IndexException(java.lang.Throwable cause)
Construct an index exception with the specified cause and no message.
-
IndexException
public IndexException(java.lang.String msg, java.lang.Throwable cause)
Construct an index exception with the specified message and cause.
-
-