FileDocCategorySizeDatePackage
ELException.javaAPI DocGlassfish v2 API2192Fri Feb 17 14:04:50 GMT 2006javax.el

ELException

public class ELException extends RuntimeException
Represents any of the exception conditions that can arise during expression evaluation.
since
JSP 2.1

Fields Summary
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 cause.

param
pRootCause the originating cause of this exception

        super( 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, pRootCause);
    
Methods Summary