com.coyotegulch.jisp
Class BTreeException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.io.IOException
              extended bycom.coyotegulch.jisp.BTreeException
All Implemented Interfaces:
java.io.Serializable

public class BTreeException
extends java.io.IOException

Standard exception type thrown by B-Tree index classes.

See Also:
BTreeIndex, Serialized Form

Constructor Summary
BTreeException()
          Constructs a new BTreeException with a null error message string.
BTreeException(java.lang.String message)
          Constructs a new BTreeException with a specific error message string.
 
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

BTreeException

public BTreeException()
Constructs a new BTreeException with a null error message string.


BTreeException

public BTreeException(java.lang.String message)
Constructs a new BTreeException with a specific error message string.

Parameters:
message - Error message string.