KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > common > transaction > TransactionException


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9 package org.jboss.portal.common.transaction;
10
11 /**
12  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
13  * @version $Revision: 1.3 $
14  */

15 public class TransactionException extends RuntimeException JavaDoc
16 {
17    public TransactionException()
18    {
19    }
20    public TransactionException(Throwable JavaDoc cause)
21    {
22       super(cause);
23    }
24    public TransactionException(String JavaDoc message)
25    {
26       super(message);
27    }
28    public TransactionException(String JavaDoc message, Throwable JavaDoc cause)
29    {
30       super(message, cause);
31    }
32 }
33
Popular Tags