package org.theonefx.wcframework.transaction.exception;
import org.theonefx.wcframework.core.exception.GeneratedException;
/**
* @Package org.theonefx.wcframework.transaction.exception
* @ClassName: TransactionException
* @author 陈曦
* @date 2010-10-20 11:21:00
* @Description: 事务异常
*/
public class TransactionException extends GeneratedException {
private static final long serialVersionUID = -2157513134377805193L;
/**
* Constructor for TransactionException.
* @param msg the detail message
*/
public TransactionException(String msg) {
super(msg);
}
/**
* Constructor for TransactionException.
* @param msg the detail message
* @param cause the root cause from the transaction API in use
*/
public TransactionException(String msg, Throwable cause) {
super(msg, cause);
}
}