javax.el
public class: ELException [javadoc |
source]
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
javax.el.ELException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
MethodNotFoundException, PropertyNotWritableException, PropertyNotFoundException
Represents any of the exception conditions that can arise during
expression evaluation.
| 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 );
}
Creates an ELException with the given cause. Parameters:
pRootCause - the originating cause of this exception
|
public ELException(String pMessage,
Throwable pRootCause) {
super (pMessage, pRootCause);
}
Creates an ELException with the given detail message and root cause. Parameters:
pMessage - the detail message
pRootCause - the originating cause of this exception
|
| Methods from java.lang.Throwable: |
|---|
|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |