javax.servlet.jsp.el
Class ELException
Exception
javax.servlet.jsp.el.ELException
public class ELException
extends Exception
Represents any of the exception conditions that arise during the
operation evaluation of the evaluator.
ELException() - Creates an ELException with no detail message.
|
ELException(String pMessage) - Creates an ELException with the provided detail message.
|
ELException(String pMessage, Throwable pRootCause) - Creates an ELException with the given detail message and root cause.
|
ELException(Throwable pRootCause) - Creates an ELException with the given root cause.
|
ELException
public ELException()
Creates an ELException with no detail message.
ELException
public ELException(String pMessage)
Creates an ELException with the provided detail message.
pMessage
- the detail message
ELException
public ELException(String pMessage,
Throwable pRootCause)
Creates an ELException with the given detail message and root cause.
pMessage
- the detail messagepRootCause
- the originating cause of this exception
ELException
public ELException(Throwable pRootCause)
Creates an ELException with the given root cause.
pRootCause
- the originating cause of this exception
getRootCause
public Throwable getRootCause()
Returns the root cause.
- the root cause of this exception
Copyright © 1999-2002 The Apache Software Foundation. All Rights Reserved.