cn.sylinx.hbatis.exception.ExecutingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-core Show documentation
Show all versions of hbatis-core Show documentation
hbatis is a simple orm framework
The newest version!
package cn.sylinx.hbatis.exception;
/**
* 执行运行时异常
*
* @author han
*
*/
@SuppressWarnings("serial")
public class ExecutingException extends HbatisException {
public ExecutingException() {
super();
}
public ExecutingException(String message) {
super(message);
}
public ExecutingException(String message, Throwable cause) {
super(message, cause);
}
public ExecutingException(Throwable cause) {
super(cause);
}
}