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

io.vrap.rmf.base.client.utils.json.JsonException Maven / Gradle / Ivy

There is a newer version: 17.17.0
Show newest version

package io.vrap.rmf.base.client.utils.json;

import io.vrap.rmf.base.client.ApiHttpResponse;
import io.vrap.rmf.base.client.error.BaseException;

public class JsonException extends BaseException {
    private static final long serialVersionUID = 0L;

    public JsonException(final String message) {
        super(message);
    }

    public JsonException(final Throwable cause) {
        super(cause);
    }

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

    public  JsonException(final ApiHttpResponse httpResponse) {
        super(httpResponse.toString());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy