KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > shark > api > client > wfmodel > InvalidRequester


1 package org.enhydra.shark.api.client.wfmodel;
2 import org.enhydra.shark.api.RootException;
3
4 /**
5  * An InvalidRequester exception is raised when a WfRequester is being
6  * identified that cannot be a 'parent' of instances of the process model.
7  * It is up to the implementation of the WfM Facility to decide which
8  * WfRequester objects to accept or not. When a WfRequester is rejected,
9  * the invoking application might decide not to register a WfRequester
10  * with the WfProcess.
11  */

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

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

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