| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception javax.servlet.jsp.el.ELException
All known Subclasses: javax.servlet.jsp.el.ELParseException,
ELException | public class ELException extends Exception (Code) | | Represents any of the exception conditions that arise during the
operation evaluation of the evaluator.
since: 2.0 |
Constructor Summary | |
public | ELException() Creates an ELException with no detail message. | public | ELException(String pMessage) Creates an ELException with the provided detail message. | public | ELException(Throwable pRootCause) Creates an ELException with the given root cause. | public | ELException(String pMessage, Throwable pRootCause) Creates an ELException with the given detail message and root cause. |
ELException | public ELException()(Code) | | Creates an ELException with no detail message.
|
ELException | public ELException(String pMessage)(Code) | | Creates an ELException with the provided detail message.
Parameters: pMessage - the detail message |
ELException | public ELException(Throwable pRootCause)(Code) | | Creates an ELException with the given root cause.
Parameters: pRootCause - the originating cause of this exception |
ELException | public ELException(String pMessage, Throwable pRootCause)(Code) | | Creates an ELException with the given detail message and root cause.
Parameters: pMessage - the detail message Parameters: pRootCause - the originating cause of this exception |
getRootCause | public Throwable getRootCause()(Code) | | Returns the root cause.
the root cause of this exception |
|
|
|