javax.servlet.jsp.el
public class: ELException [javadoc |
source]
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.servlet.jsp.el.ELException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ELParseException
Represents any of the exception conditions that arise during the
operation evaluation of the evaluator.
| Constructor: |
public ELException() {
super ();
}
Creates an ELException with no detail message. |
public ELException(String pMessage) {
super (pMessage);
}
Creates an ELException with the provided detail message. Parameters:
pMessage - the detail message
|
public ELException(Throwable pRootCause) {
super( pRootCause.getLocalizedMessage() );
mRootCause = pRootCause;
}
Creates an ELException with the given root cause. Parameters:
pRootCause - the originating cause of this exception
|
public ELException(String pMessage,
Throwable pRootCause) {
super (pMessage);
mRootCause = pRootCause;
}
Creates an ELException with the given detail message and root cause. Parameters:
pMessage - the detail message
pRootCause - the originating cause of this exception
|
| Method from javax.servlet.jsp.el.ELException Summary: |
|---|
|
getRootCause |
| Methods from java.lang.Throwable: |
|---|
|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |