KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.enhydra.shark.api.client.wfbase;
2
3
4 import org.enhydra.shark.api.*;
5
6
7 /**
8  * Our implementation of engine never throws this exception, because
9  * from its point of view, setting names in expressions has no meaning.
10  * <p> OMG definition: The NameMismatch exception is raised when the NameValue
11  * list provided as input for a set_names_in_expression operation on
12  * a BaseIterator has names that are not recognized.
13  */

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

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

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