All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jn.easyjson.jackson.ext.ArrayCommaException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy