Open Source Repository

Home /hibernate/hibernate-3.2.6.ga | Repository Home



org/hibernate/TransactionException.java
//$Id: TransactionException.java 3890 2004-06-03 16:31:32Z steveebersole $
package org.hibernate;

/**
 * Indicates that a transaction could not be begun, committed
 * or rolled back.
 *
 @see Transaction
 @author Anton van Straaten
 */

public class TransactionException extends HibernateException {

  public TransactionException(String message, Exception root) {
    super(message,root);
  }

  public TransactionException(String message) {
    super(message);
  }

}