NoSuchCheckerException: Remove unused constructors

Signed-off-by: Edwin Kempin <ekempin@google.com>
Change-Id: I4f278748abf9565d3cb1b617a4ca686855f71bf0
diff --git a/java/com/google/gerrit/plugins/checks/NoSuchCheckerException.java b/java/com/google/gerrit/plugins/checks/NoSuchCheckerException.java
index dcdadcc..df5d8cd 100644
--- a/java/com/google/gerrit/plugins/checks/NoSuchCheckerException.java
+++ b/java/com/google/gerrit/plugins/checks/NoSuchCheckerException.java
@@ -21,14 +21,6 @@
   public static final String MESSAGE = "Checker Not Found: ";
 
   public NoSuchCheckerException(CheckerUuid uuid) {
-    this(uuid.get());
-  }
-
-  public NoSuchCheckerException(String uuid) {
-    this(uuid, null);
-  }
-
-  public NoSuchCheckerException(String uuid, Throwable why) {
-    super(MESSAGE + uuid, why);
+    super(MESSAGE + uuid.get());
   }
 }