21 lines
413 B
Java
21 lines
413 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.baja.sys;
|
|
|
|
import javax.baja.sys.BajaRuntimeException;
|
|
import javax.baja.sys.Slot;
|
|
import javax.baja.sys.Type;
|
|
|
|
public class NoSuchSlotException
|
|
extends BajaRuntimeException {
|
|
public NoSuchSlotException(String string) {
|
|
super(string);
|
|
}
|
|
|
|
public NoSuchSlotException(Type type, Slot slot) {
|
|
super(type + '.' + slot.getName());
|
|
}
|
|
}
|
|
|