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 / lang / ExceptionInInitializerError.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  597 b   |  21 lines

  1. package java.lang;
  2.  
  3. public class ExceptionInInitializerError extends LinkageError {
  4.    private Throwable exception;
  5.  
  6.    public ExceptionInInitializerError() {
  7.    }
  8.  
  9.    public ExceptionInInitializerError(Throwable var1) {
  10.       this.exception = var1;
  11.    }
  12.  
  13.    public ExceptionInInitializerError(String var1) {
  14.       super(var1);
  15.    }
  16.  
  17.    public Throwable getException() {
  18.       return this.exception;
  19.    }
  20. }
  21.