top.jfunc.json.JsonException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Json-jackson Show documentation
Show all versions of Json-jackson Show documentation
common json interface implements by jackson
The newest version!
package top.jfunc.json;
/**
* @author xiongshiyan at 2018/6/10
*/
public class JsonException extends RuntimeException{
public JsonException(){};
public JsonException(String message){
super(message);
}
public JsonException(Exception e){
super(e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy