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

src.java.org.codehaus.jackson.JsonParseException Maven / Gradle / Ivy

Go to download

Jackson is a high-performance JSON processor (parser, generator)

The newest version!
package org.codehaus.jackson;

/**
 * Class for parsing exceptions, to indicate non-well-formed document
 * content
 */
public class JsonParseException
    extends JsonProcessingException
{
	final static long serialVersionUID = 123; // Stupid eclipse...

	public JsonParseException(String msg, JsonLocation loc)
    {
        super(msg, loc);
    }

    public JsonParseException(String msg, JsonLocation loc, Throwable root)
    {
        super(msg, loc, root);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy