home *** CD-ROM | disk | FTP | other *** search
- package webeq3.constants;
-
- import webeq3.schema.Box;
-
- public class TNormalizationException extends Exception {
- // $FF: renamed from: b webeq3.schema.Box
- Box field_0 = null;
- // $FF: renamed from: s java.lang.String
- String field_1;
-
- public TNormalizationException(String var1) {
- super(var1);
- this.field_1 = var1;
- }
-
- public TNormalizationException(String var1, Box var2) {
- super(var1);
- this.field_1 = var1;
- this.field_0 = var2;
- }
-
- public Box getBox() {
- return this.field_0;
- }
-
- public String getString() {
- return this.field_1;
- }
- }
-