javax.servlet.jsp.el

Class ELException

Known Direct Subclasses:
ELParseException

public class ELException
extends Exception

Represents any of the exception conditions that arise during the operation evaluation of the evaluator.
Since:
2.0

Constructor Summary

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.

Method Summary

Throwable
getRootCause()
Returns the root cause.

Constructor Details

ELException

public ELException()
Creates an ELException with no detail message.

ELException

public ELException(String pMessage)
Creates an ELException with the provided detail message.
Parameters:
pMessage - the detail message

ELException

public ELException(String pMessage,
                   Throwable pRootCause)
Creates an ELException with the given detail message and root cause.
Parameters:
pMessage - the detail message
pRootCause - the originating cause of this exception

ELException

public ELException(Throwable pRootCause)
Creates an ELException with the given root cause.
Parameters:
pRootCause - the originating cause of this exception

Method Details

getRootCause

public Throwable getRootCause()
Returns the root cause.
Returns:
the root cause of this exception

Copyright © 1999-2002 The Apache Software Foundation. All Rights Reserved.