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.feeder;
19
20 import org.bejug.javacareers.common.exception.JavaCareerException;
21
22 /***
23 * @author Bavo Bruylandt (Last modified by $Author: stephan_janssen $)
24 * @version $Revision: 1.2 $ - $Date: 2005/10/11 09:03:59 $
25 */
26 public class FeederException extends JavaCareerException {
27
28 /***
29 * Default constructor.
30 */
31 public FeederException() {
32 super();
33 }
34
35 /***
36 * Constructor with string.
37 *
38 * @param message String
39 */
40 public FeederException(String message) {
41 super(message);
42 }
43
44 /***
45 * Constructor with exception.
46 *
47 * @param e the exception that will get wrapped by this new exception.
48 */
49 public FeederException(Exception e) {
50 super(e);
51 }
52 }
53 /***
54 * $Log: FeederException.java,v $
55 * Revision 1.2 2005/10/11 09:03:59 stephan_janssen
56 * Code cleanup.
57 *
58 * Revision 1.1 2005/08/26 07:58:29 ge0ffrey
59 * split up the sources in service, serviceimpl and webclient
60 *
61 * Revision 1.3 2005/06/14 12:05:52 schauwvliege
62 * CheckStyle and fixing tests
63 *
64 * Revision 1.2 2005/06/09 08:18:43 bejug_cc
65 * Fix initial import
66 *
67 * Revision 1.1 2005/06/03 09:45:20 bbr
68 * admin feed panel work
69 *
70 */