KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > shark > api > internal > toolagent > ApplicationBusy


1 package org.enhydra.shark.api.internal.toolagent;
2 import org.enhydra.shark.api.RootException;
3
4
5
6
7 public final class ApplicationBusy extends RootException {
8
9    public ApplicationBusy () {
10       super();
11    } // ctor
12

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

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