001 package org.nanocontainer.persistence;
002
003 /**
004 * Indicates that a transaction could not be begun, committed or rolled back.
005 *
006 * @version $Revision: $
007 */
008 public class TransactionException extends PersistenceException {
009
010 public TransactionException(Throwable cause) {
011 super(cause);
012 }
013
014 }