1
2
3
4
5
6
7 package genie.core;
8
9 /***
10 *
11 * @author Tshitshi Kia Ntoni
12 * 11 juil. 2004 18:08:20
13 */
14 public class GenieException extends Exception {
15
16 /***
17 *
18 */
19 public GenieException() {
20 super();
21
22 }
23
24 /***
25 * @param arg0
26 */
27 public GenieException(String arg0) {
28 super(arg0);
29
30 }
31
32 /***
33 * @param arg0
34 */
35 public GenieException(Throwable arg0) {
36 super(arg0);
37
38 }
39
40 /***
41 * @param arg0
42 * @param arg1
43 */
44 public GenieException(String arg0, Throwable arg1) {
45 super(arg0, arg1);
46
47 }
48
49 }