01: package org.enhydra.shark.api.client.wfmodel;
02:
03: import org.enhydra.shark.api.RootException;
04:
05: /**
06: * Is raised by an attempt to release a WfResource from an assignment
07: * it is not associated with.
08: */
09: public final class NotAssigned extends RootException {
10:
11: public NotAssigned() {
12: super ();
13: } // ctor
14:
15: public NotAssigned(String $reason) {
16: super ($reason);
17: } // ctor
18:
19: public NotAssigned(Throwable th) {
20: super (th);
21: }
22:
23: public NotAssigned(String message, Throwable th) {
24: super (message, th);
25: }
26:
27: } // class NotAssigned
|