31 lines
529 B
Java
31 lines
529 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.baja.sys;
|
|
|
|
public class BajaException
|
|
extends Exception {
|
|
private Throwable cause;
|
|
|
|
public Throwable getCause() {
|
|
return this.cause;
|
|
}
|
|
|
|
public BajaException(String string, Throwable throwable) {
|
|
super(string);
|
|
this.cause = throwable;
|
|
}
|
|
|
|
public BajaException(Throwable throwable) {
|
|
this.cause = throwable;
|
|
}
|
|
|
|
public BajaException(String string) {
|
|
super(string);
|
|
}
|
|
|
|
public BajaException() {
|
|
}
|
|
}
|
|
|