01: /*
02: * Created on 25-Jan-2006
03: */
04: package org.apache.lucene.xmlparser;
05:
06: /**
07: * Licensed to the Apache Software Foundation (ASF) under one or more
08: * contributor license agreements. See the NOTICE file distributed with
09: * this work for additional information regarding copyright ownership.
10: * The ASF licenses this file to You under the Apache License, Version 2.0
11: * (the "License"); you may not use this file except in compliance with
12: * the License. You may obtain a copy of the License at
13: *
14: * http://www.apache.org/licenses/LICENSE-2.0
15: *
16: * Unless required by applicable law or agreed to in writing, software
17: * distributed under the License is distributed on an "AS IS" BASIS,
18: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19: * See the License for the specific language governing permissions and
20: * limitations under the License.
21: */
22: /**
23: * @author maharwood
24: */
25: public class ParserException extends Exception {
26:
27: /**
28: *
29: */
30: public ParserException() {
31: super ();
32: }
33:
34: /**
35: * @param message
36: */
37: public ParserException(String message) {
38: super (message);
39: }
40:
41: /**
42: * @param message
43: * @param cause
44: */
45: public ParserException(String message, Throwable cause) {
46: super (message, cause);
47: }
48:
49: /**
50: * @param cause
51: */
52: public ParserException(Throwable cause) {
53: super(cause);
54: }
55: }
|