KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > TransactionException


1 //$Id: TransactionException.java,v 1.1 2004/06/03 16:30:04 steveebersole Exp $
2
package org.hibernate;
3
4 /**
5  * Indicates that a transaction could not be begun, committed
6  * or rolled back.
7  *
8  * @see Transaction
9  * @author Anton van Straaten
10  */

11
12 public class TransactionException extends HibernateException {
13
14     public TransactionException(String JavaDoc message, Exception JavaDoc root) {
15         super(message,root);
16     }
17
18     public TransactionException(String JavaDoc message) {
19         super(message);
20     }
21
22 }
23
24
25
26
27
28
29
Popular Tags