Dateien nach "MAIN/src/main/java/com/trafalcraft/anti_redstone_clock/exception" hochladen

This commit is contained in:
2025-08-15 16:11:33 +00:00
parent e6a1c220be
commit b2a347ac05

View File

@@ -0,0 +1,18 @@
package com.trafalcraft.anti_redstone_clock.exception;
public class DuplicateRedstoneClockObjectException extends Exception {
private static final long serialVersionUID = 3251215030910170782L;
public DuplicateRedstoneClockObjectException(String message) {
super(message);
}
public DuplicateRedstoneClockObjectException(Throwable cause) {
super(cause);
}
public DuplicateRedstoneClockObjectException(String message, Throwable cause) {
super(message, cause);
}
}