home *** CD-ROM | disk | FTP | other *** search
/ Popular Software (Premium Edition) / mycd.iso / INTERNET / NETSCAP4.06 / CP32E406.EXE / nav40.z / jae40.jar / java / beans / PropertyVetoException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-08-13  |  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.