KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > javabb > lucene > index > LuceneIndexerException


1 /*
2  * Copyright 2004 JavaFree.org
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.javabb.lucene.index;
17
18
19 /**
20  * @author <a HREF="mailto:jackganzha@dev.java.net">Marcos Silva Pereira</a>
21  *
22  * @version $Id: LuceneIndexerException.java,v 1.3.10.2 2006/04/17 17:47:29 daltoncamargo Exp $
23  */

24 public class LuceneIndexerException extends RuntimeException JavaDoc {
25
26     /**
27      *
28      */

29     public LuceneIndexerException() {
30         super();
31     }
32
33     /**
34      * @param message
35      */

36     public LuceneIndexerException(String JavaDoc message) {
37         super(message);
38     }
39
40     /**
41      * @param message
42      * @param cause
43      */

44     public LuceneIndexerException(String JavaDoc message, Throwable JavaDoc cause) {
45         super(message, cause);
46     }
47
48     /**
49      * @param cause
50      */

51     public LuceneIndexerException(Throwable JavaDoc cause) {
52         super(cause);
53     }
54
55     /**
56      * @param ex
57      */

58     public LuceneIndexerException(Exception JavaDoc ex) {
59         super(ex.getMessage(), ex.getCause());
60     }
61 }
62
Popular Tags