Package jakarta.el
Class ELException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- jakarta.el.ELException
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 - Direct Known Subclasses:
- MethodNotFoundException,- PropertyNotFoundException,- PropertyNotWritableException
 
 public class ELException extends RuntimeException Represents any of the exception conditions that can arise during expression evaluation.- Since:
- Jakarta Server Pages 2.1
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ELException()Creates anELExceptionwith no detail message.ELException(String pMessage)Creates anELExceptionwith the provided detail message.ELException(String pMessage, Throwable pRootCause)Creates an ELException with the given detail message and root cause.ELException(Throwable pRootCause)Creates anELExceptionwith the given cause.
 - 
Method Summary- 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
ELExceptionpublic ELException() Creates anELExceptionwith no detail message.
 - 
ELExceptionpublic ELException(String pMessage) Creates anELExceptionwith the provided detail message.- Parameters:
- pMessage- the detail message
 
 - 
ELExceptionpublic ELException(Throwable pRootCause) Creates anELExceptionwith the given cause.- Parameters:
- pRootCause- the originating cause of this exception
 
 
- 
 
-