KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.enhydra.shark.api.client.wfmodel;
2 import org.enhydra.shark.api.RootException;
3
4 /**
5  * Is raised when it is not allowed to update the process/activity context.
6  */

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

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

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