KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.enhydra.shark.api.client.wfmodel;
2 import org.enhydra.shark.api.RootException;
3
4 /**
5  * Is raised by an attempt to signal a WfEventAudit to a WfRequester that was
6  * not created by one of the WfProcesses associated with the WfRequester.
7  */

8 public final class InvalidPerformer extends RootException
9 {
10
11   public InvalidPerformer ()
12   {
13     super();
14   } // ctor
15

16
17   public InvalidPerformer (String JavaDoc $reason)
18   {
19     super($reason);
20   } // ctor
21

22   public InvalidPerformer(Throwable JavaDoc th) {
23      super(th);
24   }
25
26   public InvalidPerformer(String JavaDoc message, Throwable JavaDoc th) {
27      super(message, th);
28   }
29
30 } // class InvalidPerformer
31
Popular Tags