KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jodd > jtx > JtxException


1 // Copyright (c) 2003-2007, Jodd Team (jodd.sf.net). All Rights Reserved.
2

3 package jodd.jtx;
4
5 import jodd.util.UncheckedException;
6
7 /**
8  * JTX unchecked exception.
9  */

10 public class JtxException extends UncheckedException {
11
12     public JtxException(Throwable JavaDoc t) {
13         super(t);
14     }
15
16     public JtxException() {
17         super();
18     }
19
20     public JtxException(String JavaDoc message) {
21         super(message);
22     }
23
24     public JtxException(String JavaDoc message, Throwable JavaDoc t) {
25         super(message, t);
26     }
27 }
28
Popular Tags