com.openthinks.libs.sql.exception.TransactionEndException 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 TransactionEndException extends TransactionException {
private static final long serialVersionUID = 7545900712402801181L;
public TransactionEndException() {
}
public TransactionEndException(String message) {
super(message);
}
public TransactionEndException(Throwable cause) {
super(cause);
}
public TransactionEndException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy