cn.tenmg.sqltool.exception.IllegalCallException 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 IllegalCallException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = -6136502662630490330L;
public IllegalCallException() {
super();
}
public IllegalCallException(String massage) {
super(massage);
}
public IllegalCallException(Throwable cause) {
super(cause);
}
public IllegalCallException(String massage, Throwable cause) {
super(massage, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy