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:
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
Constructors Constructor Description BTreeException()
Constructs a newBTreeException
with anull
error message string.BTreeException(java.lang.String message)
Constructs a newBTreeException
with a specific error message string.
-
-
-
Constructor Detail
-
BTreeException
public BTreeException()
Constructs a newBTreeException
with anull
error message string.
-
BTreeException
public BTreeException(java.lang.String message)
Constructs a newBTreeException
with a specific error message string.- Parameters:
message
- Error message string.
-
-