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

com.github.datalking.jdbc.transaction.exception.TransactionException Maven / Gradle / Ivy

The newest version!
package com.github.datalking.jdbc.transaction.exception;

/**
 * @author yaoo on 5/27/18
 */
public class TransactionException extends RuntimeException {

    public TransactionException(String msg) {
        super(msg);
    }

    public TransactionException(String msg, Throwable cause) {
        super(msg, cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy