FileDocCategorySizeDatePackage
PropertyVetoException.javaAPI DocAndroid 1.5 API1687Wed May 06 22:41:54 BST 2009java.beans

PropertyVetoException

public class PropertyVetoException extends Exception
Indicates that a proposed property change is unacceptable.

Fields Summary
private static final long
serialVersionUID
private final PropertyChangeEvent
evt
Constructors Summary
public PropertyVetoException(String message, PropertyChangeEvent event)

Constructs an instance with a message and the change event.

param
message A description of the veto.
param
event The event that was vetoed.


                                                          
         
        super(message);
        this.evt = event;
    
Methods Summary
public java.beans.PropertyChangeEventgetPropertyChangeEvent()

Gets the property change event.

return
An instance of {@link PropertyChangeEvent}

        return evt;