cn.sylinx.hbatis.exception.NestedTransactionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-core Show documentation
Show all versions of hbatis-core Show documentation
hbatis is a simple orm framework
package cn.sylinx.hbatis.exception;
/**
* 嵌套事务异常
*
* @author han
*
*/
@SuppressWarnings("serial")
public class NestedTransactionException extends TransactionException {
public NestedTransactionException() {
super();
}
public NestedTransactionException(String message) {
super(message);
}
public NestedTransactionException(String message, Throwable cause) {
super(message, cause);
}
public NestedTransactionException(Throwable cause) {
super(cause);
}
}