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

top.focess.util.json.JSONParseException Maven / Gradle / Ivy

There is a newer version: 1.1.24
Show newest version
package top.focess.util.json;

/**
 * Thrown to indicate JSON parsing error
 */
public class JSONParseException extends RuntimeException {

    /**
     * Constructs a new JSONParseException
     *
     * @param json the error parsed json
     */
    public JSONParseException(final String json) {
        super("Error in parsing JSON: " + json + ".");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy