Package com.coyotegulch.jisp
Class BTreeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.coyotegulch.jisp.BTreeException
- All Implemented Interfaces:
Serializable
Standard exception type thrown by B-Tree index classes.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newBTreeException
with anull
error message string.BTreeException
(String message) Constructs a newBTreeException
with a specific error message string. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BTreeException
public BTreeException()Constructs a newBTreeException
with anull
error message string. -
BTreeException
Constructs a newBTreeException
with a specific error message string.- Parameters:
message
- Error message string.
-