javax.servlet.jsp.jstl.core
Class ExpressionException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--javax.servlet.jsp.JspException
                    |
                    +--javax.servlet.jsp.jstl.core.ExpressionException
All Implemented Interfaces:
java.io.Serializable

public class ExpressionException
extends JspException

ExpressionException indicates an error related to the evaluation of a specific expression. An ExpressionException should not be thrown as the result of any general expression-processing error that might affect the evaluation of other exceptions in the future. JSTL tags and other custom-action handlers may catch ExpressionExceptions if they wish to detect the failure of a specific expression to complete evaluation satisfactorily.

See Also:
Serialized Form

Constructor Summary
ExpressionException()
          Constructs an ExpressionException with no message.
ExpressionException(java.lang.String message)
          Constructs an ExpressionException with a String message.
 
Methods inherited from class javax.servlet.jsp.JspException
getRootCause
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ExpressionException

public ExpressionException()
Constructs an ExpressionException with no message.

ExpressionException

public ExpressionException(java.lang.String message)
Constructs an ExpressionException with a String message.