Class IndexException

  • All Implemented Interfaces:
    java.io.Serializable

    public class IndexException
    extends StorageException
    This class represents errors that occur while manipulating indexes.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      IndexException()
      Construct an index exception with no message.
      IndexException​(java.lang.String msg)
      Construct an index exception with the specified message.
      IndexException​(java.lang.String msg, java.lang.Throwable cause)
      Construct an index exception with the specified message and cause.
      IndexException​(java.lang.Throwable cause)
      Construct an index exception with the specified cause and no message.
    • 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

      • IndexException

        public IndexException()
        Construct an index exception with no message.
      • IndexException

        public IndexException​(java.lang.String msg)
        Construct an index exception with the specified message.
      • IndexException

        public IndexException​(java.lang.Throwable cause)
        Construct an index exception with the specified cause and no message.
      • IndexException

        public IndexException​(java.lang.String msg,
                              java.lang.Throwable cause)
        Construct an index exception with the specified message and cause.