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

io.joshworks.restclient.http.exceptions.JsonParsingException Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package io.joshworks.restclient.http.exceptions;

public class JsonParsingException extends RuntimeException {

    public JsonParsingException() {
    }

    public JsonParsingException(String message) {
        super(message);
    }

    public JsonParsingException(String message, Throwable cause) {
        super(message, cause);
    }

    public JsonParsingException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy