KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > shark > api > client > wfbase > InvalidQuery


1 package org.enhydra.shark.api.client.wfbase;
2
3
4 import org.enhydra.shark.api.*;
5
6
7 /**
8  * Our current implementation of engine never throws this exception, because
9  * it does not check queries before actually interpreting
10  * them.
11  * <p> OMG definition: The InvalidQuery exception is raised when an invalid
12  * query expression is provided as input for a set_query_expression operations
13  * on a BaseIterator.
14  */

15 public final class InvalidQuery extends RootException
16 {
17
18   public InvalidQuery ()
19   {
20     super();
21   } // ctor
22

23
24   public InvalidQuery (String JavaDoc $reason)
25   {
26     super($reason);
27   } // ctor
28

29   public InvalidQuery(Throwable JavaDoc th) {
30      super(th);
31   }
32
33   public InvalidQuery(String JavaDoc message, Throwable JavaDoc th) {
34      super(th);
35   }
36
37 } // class InvalidQuery
38
Popular Tags