cn.tenmg.sqltool.exception.DataAccessException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqltool Show documentation
Show all versions of sqltool Show documentation
一个提供动态结构化查询语言(DSQL)解析和执行的通用ORM框架(连接池在分布式环境适用),支持包括MySQL、PostgreSQL、Oracle、SQLServer在内的多种数据库。
The newest version!
package cn.tenmg.sqltool.exception;
/**
* 数据访问异常。通过反射访问或设置属性引发异常时会抛出次异常
*
* @author June [email protected]
*
* @since 1.0.0
*/
public class DataAccessException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 5819754179912275832L;
public DataAccessException() {
super();
}
public DataAccessException(String massage) {
super(massage);
}
public DataAccessException(Throwable cause) {
super(cause);
}
public DataAccessException(String massage, Throwable cause) {
super(massage, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy