KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.enhydra.shark.api.client.wfmodel;
2 import org.enhydra.shark.api.RootException;
3
4 /**
5  * A CannotStop exception is raised when the execution object cannot be
6  * terminated; for example, termination of a WfActivity might not be allowed
7  * when its implementation is still active and cannot be terminated; also it
8  * can occur when one tries to terminate execution object that is already
9  * closed.
10  */

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

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

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