com.jgoodies.binding.beans
Class PropertyNotFoundException
public final class PropertyNotFoundException
A runtime exception that describes that a Java Bean property
could not be found.
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.
|
PropertyNotFoundException
public PropertyNotFoundException(String propertyName,
Class> beanClass,
Throwable cause)
Constructs a new exception instance with the specified detail message
and 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
getCause()
method). (A null value is
permitted, and indicates that the cause is nonexistent or unknown.)
PropertyNotFoundException
public PropertyNotFoundException(String propertyName,
Object bean)
Constructs a new exception instance with the specified detail message.
The cause is not initialized.
propertyName
- the name of the property that could not be foundbean
- the Java Bean used to lookup the property
PropertyNotFoundException
public PropertyNotFoundException(String propertyName,
Object bean,
Throwable cause)
Constructs a new exception instance with the specified detail message
and 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
getCause()
method). (A null value is
permitted, and indicates that the cause is nonexistent or unknown.)
Copyright © 2002-2007 JGoodies Karsten Lentzsch. All Rights Reserved.