home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / beans / PropertyVetoException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  382 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.