org.tm4j.topicmap.index
Class IndexException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.tm4j.topicmap.index.IndexException
All Implemented Interfaces:
java.io.Serializable

public class IndexException
extends java.lang.Exception

Indicates that an unexpected condition has occurred while dealing with an Index, such as a failure to open or close the index.

Since:
0.7.0
Author:
Kal Ahmed
See Also:
Serialized Form

Constructor Summary
IndexException()
          Creates a new index exception without a detail message.
IndexException(java.lang.String msg)
          Creates a new index exception with the specified detail message.
IndexException(java.lang.String msg, java.lang.Throwable cause)
           
 
Method Summary
 java.lang.Throwable getCause()
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IndexException

public IndexException()
Creates a new index exception without a detail message.


IndexException

public IndexException(java.lang.String msg)
Creates a new index exception with the specified detail message.

Parameters:
msg - The detail message to be associated with this exception.

IndexException

public IndexException(java.lang.String msg,
                      java.lang.Throwable cause)
Method Detail

getCause

public java.lang.Throwable getCause()