io.github.kits.exception.JsonParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whimthen-kits Show documentation
Show all versions of whimthen-kits Show documentation
Easy to use java tool library.
The newest version!
package io.github.kits.exception;
/**
* @project: kits
* @created: with IDEA
* @author: whimthen
* @date: 2019-03-05-11:29 | March. Tuesday
*/
public class JsonParseException extends RuntimeException {
public JsonParseException(String message) {
super(message);
}
public JsonParseException(Throwable throwable) {
super(throwable);
}
}