KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > dods > xa > DodsJtaException


1 /*
2  * Created on Mar 7, 2005
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package org.enhydra.dods.xa;
8
9 import org.enhydra.dods.DODSException;
10
11 /**
12  * @author Administrator
13  *
14  * TODO To change the template for this generated type comment go to
15  * Window - Preferences - Java - Code Style - Code Templates
16  */

17 public class DodsJtaException extends DODSException{
18     
19     
20     /**
21      * Construct a exception without a specified cause.
22      *
23      * @param msg The message associated with the exception.
24      */

25     public DodsJtaException(String JavaDoc msg) {
26         super(msg);
27     }
28
29     /**
30      * Construct a exception with a specified cause.
31      *
32      * @param cause The error or exception that cause this
33      * exception.
34      */

35     public DodsJtaException(Throwable JavaDoc cause) {
36         super(cause);
37     }
38
39     /**
40      * Construct a exception with an associated causing exception.
41      *
42      * @param msg The message associated with the exception.
43      * @param cause The error or exception that cause this
44      * exception.
45      */

46     public DodsJtaException(String JavaDoc msg, Throwable JavaDoc cause) {
47         super(msg, cause);
48     }
49
50 }
51
Popular Tags