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