FileDocCategorySizeDatePackage
PropertyNotFoundException.javaAPI DocGlassfish v2 API2443Fri Feb 17 14:04:52 GMT 2006javax.el

PropertyNotFoundException

public class PropertyNotFoundException extends ELException
Thrown when a property could not be found while evaluating a {@link ValueExpression} or {@link MethodExpression}.

For example, this could be triggered by an index out of bounds while setting an array value, or by an unreadable property while getting the value of a JavaBeans property.

since
JSP 2.1

Fields Summary
Constructors Summary
public PropertyNotFoundException()
Creates a PropertyNotFoundException with no detail message.

        super ();
    
public PropertyNotFoundException(String message)
Creates a PropertyNotFoundException with the provided detail message.

param
message the detail message

        super (message);
    
public PropertyNotFoundException(Throwable exception)
Creates a PropertyNotFoundException with the given root cause.

param
exception the originating cause of this exception

        super (exception);
    
public PropertyNotFoundException(String pMessage, Throwable pRootCause)
Creates a PropertyNotFoundException 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