View Javadoc

1   /***
2   Copyright (C) 2005 The Java Community
3   
4   This program is free software; you can redistribute it and/or modify  it under
5   the terms of the GNU General Public License as published by  the Free Software
6   Foundation; either version 2 of the License, or  (at your option) any later
7   version.
8   
9   This program is distributed in the hope that it will be useful,  but WITHOUT
10  ANY WARRANTY; without even the implied warranty of  MERCHANTABILITY or FITNESS
11  FOR A PARTICULAR PURPOSE. See the  GNU General Public License for more details.
12  
13  You should have received a copy of the GNU General Public License  along with
14  this program; if not, write to the Free Software  Foundation, Inc., 59 Temple
15  Place, Suite 330, Boston, MA 02111-1307 USA.
16  
17  */
18  package org.bejug.javacareers.common.exception;
19  
20  /***
21   * Exception thrown when something goes wrong when sending a mailmessage.
22   * @author Bart Meyers (last modified by $Author: ge0ffrey $)
23   * @version $Revision: 1.1 $ $Date: 2005/08/26 07:58:25 $
24   *
25   */
26  public class MailException extends JavaCareerException {
27     
28      /***
29       * {@inheritDoc}
30       */
31      public MailException() {
32          super();
33      }
34  
35      /***
36       * {@inheritDoc}
37       */
38      public MailException(String message) {
39          super(message);
40      }
41      
42      /***
43       * {@inheritDoc}
44       */
45      public MailException(Exception e) {
46          super(e);
47      }
48  }
49  /***
50   * $Log: MailException.java,v $
51   * Revision 1.1  2005/08/26 07:58:25  ge0ffrey
52   * split up the sources in service, serviceimpl and webclient
53   *
54   * Revision 1.2  2005/06/09 08:18:41  bejug_cc
55   * Fix initial import
56   *
57   * Revision 1.1  2005/05/18 10:20:39  bme
58   * updated/inserted for mailsupport
59   *
60   */