gu.sql2java.parser.InjectionAttackException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql2java-manager Show documentation
Show all versions of sql2java-manager Show documentation
sql2java manager class package for accessing database
package gu.sql2java.parser;
/**
* SQL注入攻击异常
* @author guyadong
*
*/
public class InjectionAttackException extends RuntimeException {
public InjectionAttackException() {
super();
}
public InjectionAttackException(String message, Throwable cause) {
super(message, cause);
}
public InjectionAttackException(String message) {
super(message);
}
public InjectionAttackException(Throwable cause) {
super(cause);
}
}