FileDocCategorySizeDatePackage
ELException.javaAPI DocApache Tomcat 6.0.142511Fri Jul 20 04:20:36 BST 2007javax.servlet.jsp.el

ELException

public class ELException extends Exception
Represents any of the exception conditions that arise during the operation evaluation of the evaluator.
since
2.0
deprecated

Fields Summary
private Throwable
mRootCause
Constructors Summary
public ELException()
Creates an ELException with no detail message.

    super ();
  
public ELException(String pMessage)
Creates an ELException with the provided detail message.

param
pMessage the detail message

    super (pMessage);
  
public ELException(Throwable pRootCause)
Creates an ELException with the given root cause.

param
pRootCause the originating cause of this exception

    super( pRootCause.getLocalizedMessage() );
    mRootCause = pRootCause;
  
public ELException(String pMessage, Throwable pRootCause)
Creates an ELException with the given detail message and root cause.

param
pMessage the detail message
param
pRootCause the originating cause of this exception

    super (pMessage);
    mRootCause = pRootCause;
  
Methods Summary
public java.lang.ThrowablegetRootCause()
Returns the root cause.

return
the root cause of this exception

    return mRootCause;