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