cn.khthink.easyapi.distributed.transaction.TransactionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of EasyApi Show documentation
Show all versions of EasyApi Show documentation
A RESTFUL Framework for JavaWeb
The newest version!
package cn.khthink.easyapi.distributed.transaction;
/**
* 事务管理异常
*
* @author kh
*/
public class TransactionException extends Exception {
public TransactionException() {
super();
}
public TransactionException(String message) {
super(message);
}
public TransactionException(String message, Throwable cause) {
super(message, cause);
}
public TransactionException(Throwable cause) {
super(cause);
}
protected TransactionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}