23 lines
440 B
Java
23 lines
440 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.baja.sys;
|
|
|
|
import javax.baja.sys.ModuleException;
|
|
|
|
public class ModuleNotFoundException
|
|
extends ModuleException {
|
|
public String getModuleName() {
|
|
return this.getMessage();
|
|
}
|
|
|
|
public ModuleNotFoundException(String string, Throwable throwable) {
|
|
super(string, throwable);
|
|
}
|
|
|
|
public ModuleNotFoundException(String string) {
|
|
super(string);
|
|
}
|
|
}
|
|
|