KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.enhydra.shark.api.client.wfmodel;
2 import org.enhydra.shark.api.RootException;
3
4 /**
5  * A NotRunning exception is raised when WfExecutionObject is not running,
6  * and someone tries to suspend, resume, terminate or abort it.
7  */

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

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

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