Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/hibernate/TransactionException.java


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 message, Exception root) {
15      super(message,root);
16    }
17  
18    public TransactionException(String message) {
19      super(message);
20    }
21  
22  }
23  
24  
25  
26  
27  
28