public class PropertyNotFoundException extends ELException
ValueExpression
or
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.Constructor and Description |
---|
PropertyNotFoundException()
Creates a PropertyNotFoundException with no detail message.
|
PropertyNotFoundException(java.lang.String message)
Creates a PropertyNotFoundException with the provided detail message.
|
PropertyNotFoundException(java.lang.String message,
java.lang.Throwable cause)
Creates a PropertyNotFoundException with the given detail message and root cause.
|
PropertyNotFoundException(java.lang.Throwable cause)
Creates a PropertyNotFoundException with the given root cause.
|
public PropertyNotFoundException()
public PropertyNotFoundException(java.lang.String message)
message
- the detail messagepublic PropertyNotFoundException(java.lang.Throwable cause)
cause
- the originating cause of this exceptionpublic PropertyNotFoundException(java.lang.String message, java.lang.Throwable cause)
message
- the detail messagecause
- the originating cause of this exception