public final class PropertyNotFoundException extends PropertyException
PropertyAdapter
,
Serialized FormConstructor and Description |
---|
PropertyNotFoundException(java.lang.String propertyName,
java.lang.Class<?> beanClass,
java.lang.Throwable cause)
Constructs a new exception instance with the specified detail message
and cause.
|
PropertyNotFoundException(java.lang.String propertyName,
java.lang.Object bean)
Constructs a new exception instance with the specified detail message.
|
PropertyNotFoundException(java.lang.String propertyName,
java.lang.Object bean,
java.lang.Throwable cause)
Constructs a new exception instance with the specified detail message
and cause.
|
public PropertyNotFoundException(java.lang.String propertyName, java.lang.Object bean)
propertyName
- the name of the property that could not be foundbean
- the Java Bean used to lookup the propertypublic PropertyNotFoundException(java.lang.String propertyName, java.lang.Object bean, java.lang.Throwable cause)
propertyName
- the name of the property that could not be foundbean
- the Java Bean used to lookup the propertycause
- the cause which is saved for later retrieval by the
Throwable.getCause()
method. A null
value is permitted,
and indicates that the cause is nonexistent or unknown.public PropertyNotFoundException(java.lang.String propertyName, java.lang.Class<?> beanClass, java.lang.Throwable cause)
propertyName
- the name of the property that could not be foundbeanClass
- the Java Bean class used to lookup the propertycause
- the cause which is saved for later retrieval by the
Throwable.getCause()
method. A null
value is permitted,
and indicates that the cause is nonexistent or unknown.Copyright © 2002-2010 JGoodies Karsten Lentzsch. All Rights Reserved.