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