Remove unused SearchException
authorMichael Winsauer <e1429715@student.tuwien.ac.at>
Mon, 10 Dec 2018 21:06:36 +0000 (22:06 +0100)
committerMichael Winsauer <e1429715@student.tuwien.ac.at>
Mon, 10 Dec 2018 21:06:36 +0000 (22:06 +0100)
Maybe it add back later, default error codes should be fine for now

service-twitter/src/main/java/at/aic18/g6t4/servicetwitter/exception/SearchException.java [deleted file]

diff --git a/service-twitter/src/main/java/at/aic18/g6t4/servicetwitter/exception/SearchException.java b/service-twitter/src/main/java/at/aic18/g6t4/servicetwitter/exception/SearchException.java
deleted file mode 100644 (file)
index b69d7ab..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-package at.aic18.g6t4.servicetwitter.exception;
-
-public class SearchException extends Exception {
-
-    public SearchException() {
-        super();
-    }
-
-    public SearchException(String message) {
-        super(message);
-    }
-
-    public SearchException(String message, Throwable cause) {
-        super(message, cause);
-    }
-
-    public SearchException(Throwable cause) {
-        super(cause);
-    }
-
-}