Source code: com/clra/util/MailerAppException.java
1 /*
2 * Copyright (c) Carnegie Lake Rowing Association 2002. All rights reserved.
3 * Distributed under the GPL license. See doc/COPYING.
4 * $RCSfile: MailerAppException.java,v $
5 * $Date: 2003/02/26 03:38:45 $
6 * $Revision: 1.3 $
7 */
8
9 package com.clra.util;
10
11 /**
12 * MailerAppException is an exception that extends the standrad
13 * Exception. This is thrown by the mailer component when there is some
14 * failure while sending the mail
15 */
16
17 public class MailerAppException extends Exception {
18
19 /**
20 * Default constructor. Takes no arguments
21 */
22 public MailerAppException() {}
23
24 /**
25 * Constructor
26 * @param str a string that explains what the exception condition is
27 */
28 public MailerAppException(String str) {
29 super(str);
30 }
31 }
32