FileDocCategorySizeDatePackage
PropertyNotWritableException.javaAPI DocGlassfish v2 API2473Fri Feb 17 14:04:54 GMT 2006javax.el

PropertyNotWritableException

public class PropertyNotWritableException extends ELException
Thrown when a property could not be written to while setting the value on a {@link ValueExpression}.

For example, this could be triggered by trying to set a map value on an unmodifiable map.

since
JSP 2.1

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

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

param
pMessage the detail message

        super (pMessage);
    
public PropertyNotWritableException(Throwable exception)
Creates a PropertyNotWritableException with the given root cause.

param
exception the originating cause of this exception

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