Remove unused exception constructors.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 29 Jul 2014 15:41:22 +0000 (17:41 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 29 Jul 2014 15:41:22 +0000 (17:41 +0200)
src/main/java/net/pterodactylus/sone/core/SoneException.java
src/main/java/net/pterodactylus/sone/core/SoneInsertException.java

index f1af354..2b1f1de 100644 (file)
@@ -26,23 +26,6 @@ public class SoneException extends Exception {
 
        /**
         * Creates a new Sone exception.
-        */
-       public SoneException() {
-               super();
-       }
-
-       /**
-        * Creates a new Sone exception.
-        *
-        * @param message
-        *            The message of the exception
-        */
-       public SoneException(String message) {
-               super(message);
-       }
-
-       /**
-        * Creates a new Sone exception.
         *
         * @param cause
         *            The cause of the exception
index 5c3f7cd..f67f093 100644 (file)
@@ -26,33 +26,6 @@ public class SoneInsertException extends SoneException {
 
        /**
         * Creates a new Sone insert exception.
-        */
-       public SoneInsertException() {
-               super();
-       }
-
-       /**
-        * Creates a new Sone insert exception.
-        *
-        * @param message
-        *            The message of the exception
-        */
-       public SoneInsertException(String message) {
-               super(message);
-       }
-
-       /**
-        * Creates a new Sone insert exception.
-        *
-        * @param cause
-        *            The cause of the exception
-        */
-       public SoneInsertException(Throwable cause) {
-               super(cause);
-       }
-
-       /**
-        * Creates a new Sone insert exception.
         *
         * @param message
         *            The message of the exception