1
2
3
4
5
6
7 package org.abraracourcix.alipes.listeners;
8
9 /***
10 * Base class for any exceptions that Listeners might throw in their
11 * eventOccurred method.
12 * @author jdt
13 */
14 public abstract class ListenerException extends Exception {
15 /***
16 * Constructor
17 *
18 */
19 public ListenerException() {
20 super();
21 }
22 /***
23 * Constructor
24 * @param arg0 description
25 */
26 public ListenerException(final String arg0) {
27 super(arg0);
28 }
29 /***
30 * Constructor
31 * @param arg0 root cause
32 */
33 public ListenerException(final Throwable arg0) {
34 super(arg0);
35 }
36 /***
37 * Constructor
38 * @param arg0 description
39 * @param arg1 root cause
40 */
41 public ListenerException(final String arg0, final Throwable arg1) {
42 super(arg0, arg1);
43 }
44 }
45
46
47
48
49
50
51
52
53
54
55