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

cn.khthink.easyapi.distributed.transaction.TransactionException Maven / Gradle / Ivy

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);
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy