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:
  • Constructor Details

    • ExpressionException

      public ExpressionException()
      Constructs a new exception with null 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.
    • ExpressionException

      public ExpressionException(String message, Throwable cause)
      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.