com.timeindexing.index
Class IndexOpenException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bycom.timeindexing.index.TimeIndexException
              extended bycom.timeindexing.index.IndexOpenException
All Implemented Interfaces:
java.io.Serializable

public class IndexOpenException
extends TimeIndexException

A IndexOpenException is thrown when an Index cannot be opend. This usually because the Properties passed at open time do not have enough information, or the index files do not exist, or the file is not an index.

See Also:
Serialized Form

Constructor Summary
IndexOpenException()
          Throw a IndexOpenException with no message.
IndexOpenException(java.lang.Exception e)
          Throw a IndexOpenException with an exception from the underlying cause.
IndexOpenException(java.lang.String s)
          Throw a IndexOpenException with a message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, 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

IndexOpenException

public IndexOpenException()
Throw a IndexOpenException with no message.


IndexOpenException

public IndexOpenException(java.lang.String s)
Throw a IndexOpenException with a message.


IndexOpenException

public IndexOpenException(java.lang.Exception e)
Throw a IndexOpenException with an exception from the underlying cause.