Initial import.
[clinton/mirror/jspi/.git] / jspi / src / main / java / de / lohndirekt / print / exception / AuthenticationException.java
... / ...
CommitLineData
1/*\r
2 * Created on 10.09.2004\r
3 *\r
4 * \r
5 */\r
6package de.lohndirekt.print.exception;\r
7\r
8/**\r
9 * @author sefftinge\r
10 *\r
11 * \r
12 */\r
13public class AuthenticationException extends RuntimeException {\r
14\r
15 /**\r
16 * \r
17 */\r
18 public AuthenticationException() {\r
19 super();\r
20 // TODO Auto-generated constructor stub\r
21 }\r
22\r
23 /**\r
24 * @param message\r
25 */\r
26 public AuthenticationException(String message) {\r
27 super(message);\r
28 // TODO Auto-generated constructor stub\r
29 }\r
30\r
31 /**\r
32 * @param message\r
33 * @param cause\r
34 */\r
35 public AuthenticationException(String message, Throwable cause) {\r
36 super(message, cause);\r
37 // TODO Auto-generated constructor stub\r
38 }\r
39\r
40 /**\r
41 * @param cause\r
42 */\r
43 public AuthenticationException(Throwable cause) {\r
44 super(cause);\r
45 // TODO Auto-generated constructor stub\r
46 }\r
47\r
48}\r