01: package org.claros.commons.mail.exception;
02:
03: import org.claros.commons.exception.ClarosBaseException;
04:
05: /**
06: * @author Umut Gokbayrak
07: *
08: */
09: public class ConnectionException extends ClarosBaseException {
10:
11: /**
12: *
13: */
14: private static final long serialVersionUID = 1L;
15:
16: /**
17: *
18: */
19: public ConnectionException() {
20: super ();
21:
22: }
23:
24: /**
25: * @param nestedException
26: */
27: public ConnectionException(Exception nestedException) {
28: super (nestedException);
29: }
30:
31: /**
32: * @param encapsulatedException
33: * @param errorKey
34: */
35: public ConnectionException(Exception nestedException,
36: String errorKey) {
37: super (nestedException, errorKey);
38: }
39:
40: /**
41: * @param errorKey
42: */
43: public ConnectionException(String errorKey) {
44: super(errorKey);
45: }
46: }
|