KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.enhydra.shark.api.client.wfmodel;
2 import org.enhydra.shark.api.RootException;
3
4
5 /**
6  * A CannotResume exception is raised when the execution object cannot be
7  * resumed. For example, resuming a WfActivity might not be allowed when
8  * the containing WfProcess is suspended.
9  */

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

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

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