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