Class NoSuchValueException

  • All Implemented Interfaces:
    java.io.Serializable

    public class NoSuchValueException
    extends java.lang.Exception
    Exception thrown when attempting to access a value that does not currently exist.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      NoSuchValueException()
      Constructs a new NoSuchValueException with no information.
      NoSuchValueException​(java.lang.String message)
      Constructs a new NoSuchValueException with the given message.
      NoSuchValueException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new NoSuchValueException with the given message and cause.
      NoSuchValueException​(java.lang.Throwable cause)
      Constructs a new NoSuchValueException with the given cause.
    • 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

      • NoSuchValueException

        public NoSuchValueException()
        Constructs a new NoSuchValueException with no information.
      • NoSuchValueException

        public NoSuchValueException​(java.lang.String message,
                                    java.lang.Throwable cause)
        Constructs a new NoSuchValueException with the given message and cause.
        Parameters:
        message - The message explaining the error.
        cause - The cause of this message.
      • NoSuchValueException

        public NoSuchValueException​(java.lang.String message)
        Constructs a new NoSuchValueException with the given message.
        Parameters:
        message - The message explaining the error.
      • NoSuchValueException

        public NoSuchValueException​(java.lang.Throwable cause)
        Constructs a new NoSuchValueException with the given cause.
        Parameters:
        cause - The cause of this error.