io.leopard.json.JsonException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leopard-json Show documentation
Show all versions of leopard-json Show documentation
规范、简化Json操作,可选Jackson、FastJson实现。并可在TopNB查看耗时统计信息。
The newest version!
package io.leopard.json;
public class JsonException extends RuntimeException {
private static final long serialVersionUID = 1L;
public JsonException(String message) {
super(message);
}
public JsonException(Throwable cause) {
super(cause.getMessage(), cause);
}
public JsonException(String message, Throwable cause) {
super(message, cause);
}
}