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