KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > storage > search > SearchQueryException


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.storage.search;
11
12 /**
13  * Exception thrown by the methods that process search queries.
14  *
15  * @author Rob van Maris
16  * @version $Id: SearchQueryException.java,v 1.4 2003/08/29 09:36:55 pierre Exp $
17  * @since MMBase-1.7
18  */

19 public class SearchQueryException extends Exception JavaDoc {
20     
21     //javadoc is inherited
22
public SearchQueryException() {
23         super();
24     }
25
26     //javadoc is inherited
27
public SearchQueryException(String JavaDoc message) {
28         super(message);
29     }
30
31     //javadoc is inherited
32
public SearchQueryException(Throwable JavaDoc cause) {
33         super(cause);
34     }
35
36     //javadoc is inherited
37
public SearchQueryException(String JavaDoc message, Throwable JavaDoc cause) {
38         super(message, cause);
39     }
40
41 }
42
Popular Tags