1
2
3
4
5
6
7 package org.abraracourcix.alipes.common.messaging;
8
9 /***
10 * Exception that might be thrown by a Messenger
11 *
12 * @author jdt
13 */
14 public class MessengerException extends Exception {
15 /***
16 * Constructor
17 *
18 */
19 public MessengerException() {
20 super();
21 }
22 /***
23 * Constructor
24 * @param arg0 description
25 */
26 public MessengerException(final String arg0) {
27 super(arg0);
28 }
29 /***
30 * Constructor
31 * @param arg0 cause
32 */
33 public MessengerException(final Throwable arg0) {
34 super(arg0);
35 }
36 /***
37 * Constructor
38 * @param arg0 description
39 * @param arg1 cause
40 */
41 public MessengerException(final String arg0, final Throwable arg1) {
42 super(arg0, arg1);
43 }
44 }
45
46
47
48
49
50
51
52
53
54
55