1 //==============================================================================
2 // file : LuceneException.java
3 // project: Lucene Search System
4 //
5 // last change: date: $Date: 2003/09/09 03:11:52 $
6 // by: $Author: bitiboy $
7 // revision: $Revision: 1.1 $
8 //------------------------------------------------------------------------------
9 // copyright: GNU GPL Software License (see class documentation)
10 //==============================================================================
11
12 package com.justhis.lucene;
13
14
15 /*
16 * $Id: LuceneException.java,v 1.1 2003/09/09 03:11:52 bitiboy Exp $
17 *
18 * Copyright 2003 Acai Software All Rights Reserved.
19 *
20 * This file LuceneException.java is part of the Lucene Search System.
21
22 * The Lucene Search System is free software; you can redistribute it and/or modify
23 * it under the terms of the GNU General Public License as published by
24 * the Free Software Foundation; either version 2 of the License, or
25 * (at your option) any later version.
26
27 * Lucene Search System is distributed in the hope that it will be useful,
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 * GNU General Public License for more details.
31
32 * You should have received a copy of the GNU General Public License
33 * along with the Lucene Search System; if not, write to the Free Software
34 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
35
36 * http://www.justhis.com http://ejb.cn
37 * CONTACT: email = webmaster@justhis.com superaxis@sohu.com
38 */
39
40 /***
41 * TODO
42 *
43 * @author <a href="http://blog.ejb.cn">acai</a>
44 * @version $Revision: 1.1 $
45 */
46 public class LuceneException extends Exception {
47 //~ Constructors -----------------------------------------------------------
48
49 /***
50 * Creates a new LuceneException object.
51 */
52 public LuceneException() {
53 super();
54 }
55
56 /***
57 * Creates a new LuceneException object.
58 *
59 * @param message TODO
60 */
61 public LuceneException(String message) {
62 super(message);
63 }
64
65 /***
66 * Creates a new LuceneException object.
67 *
68 * @param cause TODO
69 */
70 public LuceneException(Throwable cause) {
71 super(cause);
72 }
73
74 /***
75 * Creates a new LuceneException object.
76 *
77 * @param message TODO
78 * @param cause TODO
79 */
80 public LuceneException(String message, Throwable cause) {
81 super(message, cause);
82 }
83 }
84 /*
85 * $Log: LuceneException.java,v $
86 * Revision 1.1 2003/09/09 03:11:52 bitiboy
87 * *** empty log message ***
88 *
89 * Revision 1.1 2003/09/09 00:54:46 bitiboy
90 * *** empty log message ***
91 *
92 * Revision 1.1 2003/09/07 08:23:51 superaxis
93 * *** empty log message ***
94 *
95 *
96 */
This page was automatically generated by Maven