cn.twelvet.xss.exception.FromXssException Maven / Gradle / Ivy
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;
}
}