01: package dalma.endpoints.email;
02:
03: /**
04: * Signals an error in the underlying e-mail handling layer.
05: *
06: * @author Kohsuke Kawaguchi
07: */
08: public class EmailException extends RuntimeException {
09: public EmailException() {
10: }
11:
12: public EmailException(String message) {
13: super (message);
14: }
15:
16: public EmailException(String message, Throwable cause) {
17: super (message, cause);
18: }
19:
20: public EmailException(Throwable cause) {
21: super(cause);
22: }
23: }
|