KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > info > magnolia > cms > mail > MailException


1 package info.magnolia.cms.mail;
2
3 /**
4  * This exception is used to alert the user of a bad usage of the Magnolia Mail API. Date: Apr 3, 2006 Time: 10:43:24 AM
5  * @author <a HREF="mailto:niko@macnica.com">Nicolas Modrzyk</a>
6  */

7 public class MailException extends Exception JavaDoc {
8
9     /**
10      *
11      */

12     private static final long serialVersionUID = 1L;
13
14     public MailException(Throwable JavaDoc throwable) {
15         super(throwable);
16     }
17
18     public MailException(String JavaDoc string) {
19         super(string);
20     }
21
22     public MailException(String JavaDoc string, Throwable JavaDoc throwable) {
23         super(string, throwable);
24     }
25 }
26
Popular Tags