com.jn.easyjson.jackson.ext.ArrayCommaException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easyjson-jackson Show documentation
Show all versions of easyjson-jackson Show documentation
Adapter easyjson to Jackson
The newest version!
package com.jn.easyjson.jackson.ext;
import com.fasterxml.jackson.core.JsonLocation;
import com.fasterxml.jackson.core.JsonParseException;
/**
* 为处理数组中的 , 后面没有值的情况加的
*/
public class ArrayCommaException extends JsonParseException {
public ArrayCommaException(String msg, JsonLocation loc) {
super(msg, loc);
}
public ArrayCommaException(String msg, JsonLocation loc, Throwable root) {
super(msg, loc, root);
}
}