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 package org.bejug.javacareers.common.exception;
18 /***
19 *
20 * @author Sven Schauwvliege (Last modified by $Author: ge0ffrey $)
21 * @version $Revision: 1.1 $ - $Date: 2005/08/26 07:58:25 $
22 */
23 public class JavaCareerException extends Exception {
24
25 /***
26 * Default constructor.
27 */
28 public JavaCareerException() {
29 super();
30 }
31
32 /***
33 * Constructor with string.
34 * @param message String
35 */
36 public JavaCareerException(String message) {
37 super(message);
38 }
39
40 /***
41 * Constructor with exception.
42 * @param e the exception that will get wrapped by this new exception.
43 */
44 public JavaCareerException(Exception e) {
45 super(e);
46 }
47 }
48 /***
49 * $Log: JavaCareerException.java,v $
50 * Revision 1.1 2005/08/26 07:58:25 ge0ffrey
51 * split up the sources in service, serviceimpl and webclient
52 *
53 * Revision 1.2 2005/06/09 08:18:41 bejug_cc
54 * Fix initial import
55 *
56 * Revision 1.3 2005/05/22 16:46:41 sja
57 * Added javadoc.
58 *
59 * Revision 1.2 2005/05/18 10:20:39 bme
60 * updated/inserted for mailsupport
61 *
62 * Revision 1.1 2005/05/11 16:41:21 sja
63 * Moved to org.bejug.javacareers.common.exception package.
64 *
65 * Revision 1.1 2005/05/11 16:36:19 sja
66 * Renamed to JavaCareerException
67 *
68 * Revision 1.1 2005/05/09 12:31:29 ssc
69 * Added duplicate username exception
70 *
71 **/