1
2
3
4
5
6
7 package org.abraracourcix.alipes.listeners.email;
8
9 import org.abraracourcix.alipes.listeners.ListenerException;
10
11 /***
12 * Yet another exception. Might have made a rod for my own back by making ListenerException
13 * abstract
14 *
15 * @author jdt
16 */
17 public class EmailListenerException extends ListenerException {
18 /***
19 * Constructor
20 *
21 */
22 public EmailListenerException() {
23 super();
24 }
25 /***
26 * Constructor
27 * @param arg0 description
28 */
29 public EmailListenerException(final String arg0) {
30 super(arg0);
31 }
32 /***
33 * Constructor
34 * @param arg0 cause
35 */
36 public EmailListenerException(final Throwable arg0) {
37 super(arg0);
38 }
39 /***
40 * Constructor
41 * @param arg0 description
42 * @param arg1 cause
43 */
44 public EmailListenerException(final String arg0, final Throwable arg1) {
45 super(arg0, arg1);
46 }
47 }
48
49
50
51
52
53
54
55
56
57
58