home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2001 December / dppcpro1201.iso / Extras / maple / Viewer / WebEQ / MMLViewerInstall.cab / MMLViewerApplet.cab / webeq3 / constants / TNormalizationException.class (.txt) < prev   
Encoding:
Java Class File  |  2001-05-24  |  657 b   |  30 lines

  1. package webeq3.constants;
  2.  
  3. import webeq3.schema.Box;
  4.  
  5. public class TNormalizationException extends Exception {
  6.    // $FF: renamed from: b webeq3.schema.Box
  7.    Box field_0 = null;
  8.    // $FF: renamed from: s java.lang.String
  9.    String field_1;
  10.  
  11.    public TNormalizationException(String var1) {
  12.       super(var1);
  13.       this.field_1 = var1;
  14.    }
  15.  
  16.    public TNormalizationException(String var1, Box var2) {
  17.       super(var1);
  18.       this.field_1 = var1;
  19.       this.field_0 = var2;
  20.    }
  21.  
  22.    public Box getBox() {
  23.       return this.field_0;
  24.    }
  25.  
  26.    public String getString() {
  27.       return this.field_1;
  28.    }
  29. }
  30.