KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.enhydra.shark.api.client.wfbase;
2
3
4 import org.enhydra.shark.api.*;
5
6
7 /**
8  * OMG definition: The GrammarNotSuported exception is raised when the input
9  * parameter of the set_query_grammar on a BaseIterator specifies a query grammar
10  * that is not supported by the iterator.
11  */

12 public final class GrammarNotSupported extends RootException
13 {
14
15    public GrammarNotSupported ()
16    {
17       super();
18    } // ctor
19

20
21    public GrammarNotSupported (String JavaDoc $reason)
22    {
23       super($reason);
24    } // ctor
25

26    public GrammarNotSupported(Throwable JavaDoc th) {
27       super(th);
28    }
29
30    public GrammarNotSupported(String JavaDoc message, Throwable JavaDoc th) {
31       super(th);
32    }
33
34 } // class GrammarNotSupported
35
Popular Tags