Package org.forgerock.openig.el
Class ExpressionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.forgerock.openig.el.ExpressionException
-
- All Implemented Interfaces:
Serializable
public class ExpressionException extends Exception
An exception that is thrown during expression operations.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExpressionException()
Constructs a new exception withnull
as its detail message.ExpressionException(String message)
Constructs a new exception with the specified detail message.ExpressionException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.ExpressionException(Throwable cause)
Constructs a new exception with the specified cause.
-
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()
Constructs a new exception withnull
as its detail message.
-
ExpressionException
public ExpressionException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- The message that explains the problem that occurred.
-
ExpressionException
public ExpressionException(Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
cause
- The exception that was caught to trigger this exception.
-
-