26 lines
497 B
Java
26 lines
497 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.baja.agent;
|
|
|
|
import javax.baja.sys.BajaRuntimeException;
|
|
|
|
public class NoSuchAgentException
|
|
extends BajaRuntimeException {
|
|
public NoSuchAgentException(String string, Throwable throwable) {
|
|
super(string, throwable);
|
|
}
|
|
|
|
public NoSuchAgentException(String string) {
|
|
super(string);
|
|
}
|
|
|
|
public NoSuchAgentException(Throwable throwable) {
|
|
super(throwable);
|
|
}
|
|
|
|
public NoSuchAgentException() {
|
|
}
|
|
}
|
|
|