01: package org.enhydra.shark.api.client.wfbase;
02:
03: import org.enhydra.shark.api.*;
04:
05: /**
06: * Our implementation of engine never throws this exception, because
07: * from its point of view, setting names in expressions has no meaning.
08: * <p> OMG definition: The NameMismatch exception is raised when the NameValue
09: * list provided as input for a set_names_in_expression operation on
10: * a BaseIterator has names that are not recognized.
11: */
12: public final class NameMismatch extends RootException {
13:
14: public NameMismatch() {
15: super ();
16: } // ctor
17:
18: public NameMismatch(String $reason) {
19: super ($reason);
20: } // ctor
21:
22: public NameMismatch(Throwable th) {
23: super (th);
24: }
25:
26: public NameMismatch(String message, Throwable th) {
27: super (th);
28: }
29:
30: } // class NameMismatch
|