home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / java / beans / PropertyVetoException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  528 b   |  15 lines

  1. package java.beans;
  2.  
  3. public class PropertyVetoException extends Exception {
  4.    private PropertyChangeEvent evt;
  5.  
  6.    public PropertyVetoException(String var1, PropertyChangeEvent var2) {
  7.       super(var1);
  8.       this.evt = var2;
  9.    }
  10.  
  11.    public PropertyChangeEvent getPropertyChangeEvent() {
  12.       return this.evt;
  13.    }
  14. }
  15.