Class ExpressionException

    • Constructor Summary

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

      • ExpressionException

        public ExpressionException()
        Construct an expression exception with no message.
      • ExpressionException

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

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

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