KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > shark > api > client > wfservice > PackageInUse


1 package org.enhydra.shark.api.client.wfservice;
2 import org.enhydra.shark.api.RootException;
3
4 /**
5  * Raised when user tries to close package, and it is referenced as an
6  * external package from another package that is loaded into engine.
7  */

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

14
15    public PackageInUse (String JavaDoc $reason) {
16       super($reason);
17    } // ctor
18

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