01: package com.bostechcorp.cbesb.runtime.email;
02:
03: import com.bostechcorp.cbesb.common.runtime.ResourcesConnectionException;
04:
05: public class MailConnectionException extends
06: ResourcesConnectionException {
07:
08: /**
09: *
10: */
11: private static final long serialVersionUID = 6384480148430641219L;
12:
13: /**
14: * @param message
15: * @param remedy
16: * @param cause
17: */
18: public MailConnectionException(String message, String remedy,
19: Throwable cause) {
20: super (message, remedy, cause);
21:
22: }
23:
24: /**
25: * @param message
26: * @param remedy
27: */
28: public MailConnectionException(String message, String remedy) {
29: super (message, remedy);
30: }
31:
32: /**
33: * @param message
34: * @param cause
35: */
36: public MailConnectionException(String message, Throwable cause) {
37: super (message, cause);
38: }
39:
40: /**
41: * @param cause
42: */
43: public MailConnectionException(Throwable cause) {
44: super (cause);
45: }
46:
47: public MailConnectionException() {
48: super ();
49:
50: }
51:
52: public MailConnectionException(String arg0, Exception arg1) {
53: super (arg0, arg1);
54:
55: }
56:
57: public MailConnectionException(String arg0) {
58: super(arg0);
59:
60: }
61:
62: }
|