Initial import.
[clinton/mirror/jspi/.git] / jspi / src / main / java / de / lohndirekt / print / exception / AuthenticationException.java
diff --git a/jspi/src/main/java/de/lohndirekt/print/exception/AuthenticationException.java b/jspi/src/main/java/de/lohndirekt/print/exception/AuthenticationException.java
new file mode 100644 (file)
index 0000000..596be4e
--- /dev/null
@@ -0,0 +1,48 @@
+/*\r
+ * Created on 10.09.2004\r
+ *\r
+ * \r
+ */\r
+package de.lohndirekt.print.exception;\r
+\r
+/**\r
+ * @author sefftinge\r
+ *\r
+ * \r
+ */\r
+public class AuthenticationException extends RuntimeException {\r
+\r
+    /**\r
+     * \r
+     */\r
+    public AuthenticationException() {\r
+        super();\r
+        // TODO Auto-generated constructor stub\r
+    }\r
+\r
+    /**\r
+     * @param message\r
+     */\r
+    public AuthenticationException(String message) {\r
+        super(message);\r
+        // TODO Auto-generated constructor stub\r
+    }\r
+\r
+    /**\r
+     * @param message\r
+     * @param cause\r
+     */\r
+    public AuthenticationException(String message, Throwable cause) {\r
+        super(message, cause);\r
+        // TODO Auto-generated constructor stub\r
+    }\r
+\r
+    /**\r
+     * @param cause\r
+     */\r
+    public AuthenticationException(Throwable cause) {\r
+        super(cause);\r
+        // TODO Auto-generated constructor stub\r
+    }\r
+\r
+}\r