home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / jaxp.jar / javax / xml / parsers / FactoryConfigurationError.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-02-23  |  815 b   |  33 lines

  1. package javax.xml.parsers;
  2.  
  3. public class FactoryConfigurationError extends Error {
  4.    private Exception exception;
  5.  
  6.    public FactoryConfigurationError() {
  7.       this.exception = null;
  8.    }
  9.  
  10.    public FactoryConfigurationError(Exception var1) {
  11.       this.exception = var1;
  12.    }
  13.  
  14.    public FactoryConfigurationError(Exception var1, String var2) {
  15.       super(var2);
  16.       this.exception = var1;
  17.    }
  18.  
  19.    public FactoryConfigurationError(String var1) {
  20.       super(var1);
  21.       this.exception = null;
  22.    }
  23.  
  24.    public Exception getException() {
  25.       return this.exception;
  26.    }
  27.  
  28.    public String getMessage() {
  29.       String var1 = super.getMessage();
  30.       return var1 == null && this.exception != null ? this.exception.getMessage() : var1;
  31.    }
  32. }
  33.