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, committed6 * or rolled back.7 *8 * @see Transaction9 * @author Anton van Straaten10 */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 29