A runtime exception that describes that a Java Bean does not
support bound properties.
The conditions for bound properties are specified in section 7.4 of the
Java
Bean Specification. Basically you must provide the following two methods:
public void addPropertyChangeListener(PropertyChangeListener x);
public void removePropertyChangeListener(PropertyChangeListener x);
PropertyUnboundException(String message) Constructs a new exception instance with the specified detail message.
The cause is not initialized.
Parameters: message - the detail message.
public PropertyUnboundException(String message)(Code)
Constructs a new exception instance with the specified detail message.
The cause is not initialized.
Parameters: message - the detail message. The detail message is saved forlater retrieval by the PropertyUnboundException.getMessage() method.
Constructs a new exception instance with the specified detail message
and cause.
Parameters: message - the detail message (which is saved for later retrievalby the PropertyUnboundException.getMessage() method). Parameters: cause - the cause (which is saved for later retrieval by thePropertyUnboundException.getCause() method). (A null value ispermitted, and indicates that the cause is nonexistent orunknown.)