KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > shark > api > internal > interoperability > InteroperabilityException


1 /* InteroperabilityException.java */
2 package org.enhydra.shark.api.internal.interoperability;
3
4 import org.enhydra.shark.api.RootException;
5
6 /**
7  * InteroperabilityException might be thrown from Interoperability component
8  * implementation on failures happened during execution.
9  *
10  * It extends RootException for easier manipulation by Shark kernel.
11  *
12  * @author V.Puskas
13  * @version 0.1
14  */

15 public class InteroperabilityException extends RootException {
16
17    public InteroperabilityException() {
18       super();
19    }
20    public InteroperabilityException(String JavaDoc message) {
21       super(message);
22    }
23    public InteroperabilityException(String JavaDoc message, Throwable JavaDoc thr) {
24       super(message, thr);
25    }
26    public InteroperabilityException(Throwable JavaDoc thr) {
27       super(thr);
28    }
29 }
30
Popular Tags