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

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

The newest version!
package gu.sql2java.manager.parser;

/**
 * SQL注入攻击异常
 * @author guyadong
 *
 */
public class InjectionAttackException extends RuntimeException {

	private static final long serialVersionUID = 4301382765503928174L;

	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 - 2025 Weber Informatics LLC | Privacy Policy