All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.sylinx.hbatis.exception.NestedTransactionException Maven / Gradle / Ivy

The newest version!
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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy