SteamWar/SpigotCore
Archiviert
13
0

Simplify CommandParseException as it is a code-flow Exception

Dieser Commit ist enthalten in:
yoyosource 2021-05-05 08:25:00 +02:00
Ursprung 9dad22742e
Commit 84ce642bc6

Datei anzeigen

@ -23,20 +23,4 @@ public class CommandParseException extends Exception {
public CommandParseException() {
}
public CommandParseException(String message) {
super(message);
}
public CommandParseException(String message, Throwable cause) {
super(message, cause);
}
public CommandParseException(Throwable cause) {
super(cause);
}
public CommandParseException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}