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
An exception that is thrown during expression operations.
- See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception withnullas 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 Details
- 
ExpressionException
public ExpressionException()Constructs a new exception withnullas its detail message. - 
ExpressionException
Constructs a new exception with the specified detail message.- Parameters:
 message- The message that explains the problem that occurred.
 - 
ExpressionException
Constructs a new exception with the specified cause.- Parameters:
 cause- The exception that was caught to trigger this exception.
 - 
ExpressionException
Constructs a new exception with the specified detail message and cause.- Parameters:
 message- The message that explains the problem that occurred.cause- The exception that was caught to trigger this exception.
 
 -