|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.jgoodies.binding.beans.PropertyException
com.jgoodies.binding.beans.PropertyNotFoundException
public final class PropertyNotFoundException
A runtime exception that describes that a Java Bean property could not be found.
PropertyAdapter
,
Serialized FormConstructor Summary | |
---|---|
PropertyNotFoundException(String propertyName,
Class beanClass,
Throwable cause)
Constructs a new exception instance with the specified detail message and cause. |
|
PropertyNotFoundException(String propertyName,
Object bean)
Constructs a new exception instance with the specified detail message. |
|
PropertyNotFoundException(String propertyName,
Object bean,
Throwable cause)
Constructs a new exception instance with the specified detail message and cause. |
Method Summary |
---|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public PropertyNotFoundException(String propertyName, Object bean)
propertyName
- the name of the property that could not be foundbean
- the Java Bean used to lookup the propertypublic PropertyNotFoundException(String propertyName, Object bean, 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(String propertyName, Class beanClass, 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.)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |