1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package net.sf.oxclient.communication;
17
18 import net.sf.oxclient.GroupwareException;
19
20 public class CommunicationException extends GroupwareException {
21
22
23
24
25 private static final long serialVersionUID = 2541908473095860942L;
26
27 public CommunicationException() {
28 super();
29 }
30
31 public CommunicationException(final String arg0) {
32 super(arg0);
33 }
34
35 public CommunicationException(final String arg0, final Throwable arg1) {
36 super(arg0, arg1);
37 }
38
39 public CommunicationException(final Throwable arg0) {
40 super(arg0);
41 }
42
43 }