lowentry.ue4.libs.jackson.core.JsonParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ue4 Show documentation
Show all versions of ue4 Show documentation
A Java library for the Low Entry UE4 plugins.
The newest version!
/* Jackson JSON-processor.
*
* Copyright (c) 2007- Tatu Saloranta, [email protected]
*/
package lowentry.ue4.libs.jackson.core;
/**
* Exception type for parsing problems, used when non-well-formed content
* (content that does not conform to JSON syntax as per specification)
* is encountered.
*/
public class JsonParseException extends JsonProcessingException {
private static final long serialVersionUID = 1L;
public JsonParseException(String msg, JsonLocation loc) {
super(msg, loc);
}
public JsonParseException(String msg, JsonLocation loc, Throwable root) {
super(msg, loc, root);
}
}