01: package org.claros.commons.mail.exception;
02:
03: public class MailSizeExceededException extends Exception {
04: private static final long serialVersionUID = -7819262834857638035L;
05:
06: public MailSizeExceededException() {
07: super ();
08: }
09:
10: public MailSizeExceededException(String arg0) {
11: super (arg0);
12: }
13:
14: public MailSizeExceededException(Throwable arg0) {
15: super (arg0);
16: }
17:
18: public MailSizeExceededException(String arg0, Throwable arg1) {
19: super(arg0, arg1);
20: }
21:
22: }
|