Class 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 new BTreeException with a null error message string.
      BTreeException​(java.lang.String message)
      Constructs a new BTreeException 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
      • 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.