All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gu.sql2java.parser.InjectionAttackException Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy