home *** CD-ROM | disk | FTP | other *** search
- package sun.tools.java;
-
- public class CompilerError extends Error {
- // $FF: renamed from: e java.lang.Throwable
- Throwable field_0;
-
- public CompilerError(String var1) {
- super(var1);
- this.field_0 = this;
- }
-
- public CompilerError(Exception var1) {
- super(((Throwable)var1).getMessage());
- this.field_0 = var1;
- }
-
- public void printStackTrace() {
- if (this.field_0 == this) {
- super.printStackTrace();
- } else {
- this.field_0.printStackTrace();
- }
- }
- }
-