33 lines
569 B
Java
33 lines
569 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.baja.io;
|
|
|
|
import java.io.IOException;
|
|
|
|
public class BajaIOException
|
|
extends IOException {
|
|
private Throwable cause;
|
|
|
|
public Throwable getCause() {
|
|
return this.cause;
|
|
}
|
|
|
|
public BajaIOException(String string, Throwable throwable) {
|
|
super(string);
|
|
this.cause = throwable;
|
|
}
|
|
|
|
public BajaIOException(Throwable throwable) {
|
|
this.cause = throwable;
|
|
}
|
|
|
|
public BajaIOException(String string) {
|
|
super(string);
|
|
}
|
|
|
|
public BajaIOException() {
|
|
}
|
|
}
|
|
|