![JAR search and dependency download from the Maven repository](/logo.png)
cn.twelvet.xss.exception.JacksonXssException Maven / Gradle / Ivy
package cn.twelvet.xss.exception;
import cn.twelvet.xss.exception.XssException;
import java.io.IOException;
/**
* xss jackson 异常
*
* @author twelvet
*/
public class JacksonXssException extends IOException implements XssException {
/**
* 异常信息
*/
private final String input;
@Override
public String getInput() {
return input;
}
/**
* @param input String
* @param message String
*/
public JacksonXssException(String input, String message) {
super(message);
this.input = input;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy