package com.mandi.common;
|
|
/**
|
* @author mengly
|
* @version 创建时间:2017年1月18日 下午6:18:41
|
* 类说明
|
*/
|
|
public class TransactionException extends Exception {
|
private static final long serialVersionUID = 1L;
|
|
public TransactionException() {
|
super();
|
}
|
|
public TransactionException(String message, Throwable cause,
|
boolean enableSuppression, boolean writableStackTrace) {
|
super(message, cause, enableSuppression, writableStackTrace);
|
}
|
|
public TransactionException(String message, Throwable cause) {
|
super(message, cause);
|
}
|
|
public TransactionException(String message) {
|
super(message);
|
}
|
|
public TransactionException(Throwable cause) {
|
super(cause);
|
}
|
|
}
|