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

ELException

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

Fields Summary
Constructors Summary
public ELException()
Creates an ELException with no detail message

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

param
message the detail message

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

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

		super(message, cause);
	
public ELException(Throwable cause)
Creates an ELException with the given cause

param
cause the originating cause of this exception

		super(cause);
	
Methods Summary