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