Class IndexException

  • All Implemented Interfaces:
    java.io.Serializable

    @ThreadSafe
    public class IndexException
    extends java.lang.Exception
    An exception thrown when the there is an issue using the in-memory CPE Index.
    Author:
    Jeremy Long
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      IndexException()
      Creates a new IndexException.
      IndexException​(java.lang.String msg)
      Creates a new IndexException.
      IndexException​(java.lang.String msg, java.lang.Throwable ex)
      Creates a new IndexException.
      IndexException​(java.lang.Throwable ex)
      Creates a new IndexException.
    • 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()
        Creates a new IndexException.
      • IndexException

        public IndexException​(java.lang.String msg)
        Creates a new IndexException.
        Parameters:
        msg - a message for the exception.
      • IndexException

        public IndexException​(java.lang.Throwable ex)
        Creates a new IndexException.
        Parameters:
        ex - the cause of the failure.
      • IndexException

        public IndexException​(java.lang.String msg,
                              java.lang.Throwable ex)
        Creates a new IndexException.
        Parameters:
        msg - a message for the exception.
        ex - the cause of the failure.