cn.schoolwow.quickdao.domain.exception.SQLRuntimeException Maven / Gradle / Ivy
package cn.schoolwow.quickdao.domain.exception;
/**
* 包装SQL异常为运行时异常
*/
public class SQLRuntimeException extends RuntimeException {
public SQLRuntimeException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy