01: package ru.emdev.EmForge.email;
02:
03: public class EmailerException extends Exception {
04: private static final long serialVersionUID = 8528942578005714581L;
05:
06: /**
07: * Creates a new EmailerException object.
08: */
09: public EmailerException() {
10: super ();
11: }
12:
13: /**
14: * Creates a new EmailerException object.
15: *
16: * @param message DOCUMENT ME!
17: */
18: public EmailerException(String message) {
19: super (message);
20: }
21:
22: /**
23: * Creates a new EmailerException object.
24: *
25: * @param cause DOCUMENT ME!
26: */
27: public EmailerException(Throwable cause) {
28: super (cause);
29: }
30:
31: /**
32: * Creates a new EmailerException object.
33: *
34: * @param message DOCUMENT ME!
35: * @param cause DOCUMENT ME!
36: */
37: public EmailerException(String message, Throwable cause) {
38: super(message, cause);
39: }
40: }
|