Class ExpressionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aquima.interactions.foundation.exception.AppException
-
- com.aquima.interactions.expressions.ExpressionException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ScopeException
public class ExpressionException extends AppException
Base class for exceptions that may be raised during the evaluation of expressions.- Since:
- 5.0
- Author:
- O. Kerpershoek, F. van der Meer
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExpressionException(String message)
Constructs an exception object with only a message explaining the cause of the exception.ExpressionException(String message, Throwable cause)
Constructs an exception object with a message and root cause explaining the nature the exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ExpressionException
public ExpressionException(String message)
Constructs an exception object with only a message explaining the cause of the exception.- Parameters:
message
- Message describing the cause of the exception.
-
ExpressionException
public ExpressionException(String message, Throwable cause)
Constructs an exception object with a message and root cause explaining the nature the exception.- Parameters:
message
- Message describing the cause of the exception.cause
- Exception object containing the original cause of the error
-
-