| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException com.jgoodies.binding.beans.PropertyException com.jgoodies.binding.beans.PropertyNotFoundException
Constructor Summary | |
public | PropertyNotFoundException(String propertyName, Object bean) Constructs a new exception instance with the specified detail message. | public | PropertyNotFoundException(String propertyName, Object bean, Throwable cause) Constructs a new exception instance with the specified detail message
and cause.
Parameters: propertyName - the name of the property that could not be found Parameters: bean - the Java Bean used to lookup the property Parameters: cause - the cause (which is saved for later retrieval by thePropertyNotFoundException.getCause() method). | public | PropertyNotFoundException(String propertyName, Class> beanClass, Throwable cause) Constructs a new exception instance with the specified detail message
and cause.
Parameters: propertyName - the name of the property that could not be found Parameters: beanClass - the Java Bean class used to lookup the property Parameters: cause - the cause (which is saved for later retrieval by thePropertyNotFoundException.getCause() method). |
PropertyNotFoundException | public PropertyNotFoundException(String propertyName, Object bean)(Code) | | Constructs a new exception instance with the specified detail message.
The cause is not initialized.
Parameters: propertyName - the name of the property that could not be found Parameters: bean - the Java Bean used to lookup the property |
PropertyNotFoundException | public PropertyNotFoundException(String propertyName, Object bean, Throwable cause)(Code) | | Constructs a new exception instance with the specified detail message
and cause.
Parameters: propertyName - the name of the property that could not be found Parameters: bean - the Java Bean used to lookup the property Parameters: cause - the cause (which is saved for later retrieval by thePropertyNotFoundException.getCause() method). (A null value ispermitted, and indicates that the cause is nonexistent or unknown.) |
PropertyNotFoundException | public PropertyNotFoundException(String propertyName, Class> beanClass, Throwable cause)(Code) | | Constructs a new exception instance with the specified detail message
and cause.
Parameters: propertyName - the name of the property that could not be found Parameters: beanClass - the Java Bean class used to lookup the property Parameters: cause - the cause (which is saved for later retrieval by thePropertyNotFoundException.getCause() method). (A null value ispermitted, and indicates that the cause is nonexistent or unknown.) |
|
|