niagara-ax/modules/cfr_output/javax/baja/sys/DuplicateSlotException.java
2026-03-17 13:31:18 -07:00

24 lines
676 B
Java

/*
* Decompiled with CFR 0.152.
*/
package javax.baja.sys;
import javax.baja.sys.LocalizableRuntimeException;
import javax.baja.sys.Slot;
public class DuplicateSlotException
extends LocalizableRuntimeException {
public DuplicateSlotException(String string, String string2, Object[] objectArray, Throwable throwable) {
super(string, string2, objectArray, throwable);
}
public DuplicateSlotException(String string, String string2, Object[] objectArray) {
super(string, string2, objectArray, null);
}
public DuplicateSlotException(Slot slot) {
super("baja", "DuplicateSlotException.slot", new Object[]{slot.getName()});
}
}