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

cn.twelvet.xss.exception.FromXssException Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package cn.twelvet.xss.exception;

import cn.twelvet.xss.exception.XssException;

/**
 * xss 表单异常
 *
 * @author twelvet
 */
public class FromXssException extends IllegalStateException implements XssException {

	/**
	 * 异常信息
	 */
	private final String input;

	@Override
	public String getInput() {
		return input;
	}

	/**
	 * @param input String
	 * @param message String
	 */
	public FromXssException(String input, String message) {
		super(message);
		this.input = input;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy