1 /**
2  Copyright (c) 2003, Technology Concepts & Design, Inc.
3  All rights reserved.
4 
5  Redistribution and use in source and binary forms, with or without modification, are permitted
6  provided that the following conditions are met:
7 
8  - Redistributions of source code must retain the above copyright notice, this list of conditions
9  and the following disclaimer.
10 
11  - Redistributions in binary form must reproduce the above copyright notice, this list of conditions
12  and the following disclaimer in the documentation and/or other materials provided with the distribution.
13 
14  - Neither the name of Technology Concepts & Design, Inc. nor the names of its contributors may be used to
15  endorse or promote products derived from this software without specific prior written permission.
16 
17  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
18  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
19  PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
20  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
24  THE POSSIBILITY OF SUCH DAMAGE.
25  **/
26 
27 package org.xapian.errors;
28 
29 /**
30  *
31  */
32 public class RuntimeError extends XapianError {
RuntimeError(String s)33     public RuntimeError(String s) {
34         super(s);
35     }
36 
RuntimeError()37     public RuntimeError() {
38         super();
39     }
40 }
41