From 84ce642bc66c886f71066d957c820695dd8dba13 Mon Sep 17 00:00:00 2001 From: yoyosource Date: Wed, 5 May 2021 08:25:00 +0200 Subject: [PATCH] Simplify CommandParseException as it is a code-flow Exception --- .../steamwar/command/CommandParseException.java | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/SpigotCore_Main/src/de/steamwar/command/CommandParseException.java b/SpigotCore_Main/src/de/steamwar/command/CommandParseException.java index b47cace..21e68bb 100644 --- a/SpigotCore_Main/src/de/steamwar/command/CommandParseException.java +++ b/SpigotCore_Main/src/de/steamwar/command/CommandParseException.java @@ -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); - } }