![JAR search and dependency download from the Maven repository](/logo.png)
com.openthinks.libs.sql.exception.TransactionBackException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openlibs.sql Show documentation
Show all versions of openlibs.sql Show documentation
The lib of java database ORM simple implementation.
The newest version!
package com.openthinks.libs.sql.exception;
/**
* 事务回滚异常
* @author dmj
*
*/
public class TransactionBackException extends TransactionException {
private static final long serialVersionUID = -74019271603206169L;
public TransactionBackException() {
}
public TransactionBackException(String message) {
super(message);
}
public TransactionBackException(Throwable cause) {
super(cause);
}
public TransactionBackException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy