KickJava   Java API By Example, From Geeks To Geeks.

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


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

11
12    public ApplicationNotDefined (String JavaDoc $reason) {
13       super($reason);
14    } // ctor
15

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