29 lines
552 B
Java
29 lines
552 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* javax.baja.sys.BajaRuntimeException
|
|
*/
|
|
package javax.baja.alarm;
|
|
|
|
import javax.baja.sys.BajaRuntimeException;
|
|
|
|
public class AlarmException
|
|
extends BajaRuntimeException {
|
|
public AlarmException(String string, Throwable throwable) {
|
|
super(string, throwable);
|
|
}
|
|
|
|
public AlarmException(Throwable throwable) {
|
|
super(throwable);
|
|
}
|
|
|
|
public AlarmException(String string) {
|
|
super(string);
|
|
}
|
|
|
|
public AlarmException() {
|
|
}
|
|
}
|
|
|