FileDocCategorySizeDatePackage
ELParseException.javaAPI DocGlassfish v2 API2704Fri May 04 22:34:28 BST 2007javax.servlet.jsp.el

ELParseException

public class ELParseException extends ELException
Represents a parsing error encountered while parsing an EL expression.
deprecated
As of JSP 2.1, replaced by {@link javax.el.ELException}
since
JSP 2.0

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

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

param
pMessage the detail message

    super (pMessage);
  
Methods Summary