SqlValidateException.java
371 Bytes
package com.xly.exception.sqlexception;
/**
* SQL强校验异常(语法错误/危险关键词/非SELECT语句)
*/
public class SqlValidateException extends Nl2SqlBaseException {
public SqlValidateException(String message) {
super(message);
}
public SqlValidateException(String message, Throwable cause) {
super(message, cause);
}
}