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.jobs.search.lucene;
18
19 import org.bejug.javacareers.common.exception.JavaCareerException;
20
21 /***
22 * @author Bavo Bruylandt (Last modified by $Author: ge0ffrey $)
23 * @version $Revision: 1.1 $ - $Date: 2005/08/26 07:58:30 $
24 */
25 public class PdfException extends JavaCareerException {
26
27 /***
28 * Default constructor.
29 */
30 public PdfException() {
31 super();
32 }
33
34 /***
35 * Constructor.
36 *
37 * @param message String
38 */
39 public PdfException(String message) {
40 super(message);
41 }
42
43 /***
44 * Constructor.
45 *
46 * @param exception Exception causing this
47 */
48 public PdfException(Exception exception) {
49 super(exception);
50 }
51 }
52
53 /***
54 * $Log: PdfException.java,v $
55 * Revision 1.1 2005/08/26 07:58:30 ge0ffrey
56 * split up the sources in service, serviceimpl and webclient
57 *
58 * Revision 1.2 2005/06/09 08:18:52 bejug_cc
59 * Fix initial import
60 *
61 * Revision 1.1 2005/05/23 17:09:48 sja
62 * Removed Lucene prefix.
63 *
64 * Revision 1.1 2005/05/23 15:42:00 bbr
65 * added weight to lucene
66 *
67 * Revision 1.1 2005/05/23 08:46:33 PSONG09
68 * added feeder source files to project
69 *
70 * Revision 1.2 2005/05/23 07:10:18 stephan_janssen
71 * Code cleanup.
72 *
73 * Revision 1.1 2005/05/18 15:46:39 bavo_jcs
74 * -adeed lucene service
75 *
76 */