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

io.github.juniqlim.apicall.http.HttpApiCallException Maven / Gradle / Ivy

There is a newer version: 0.0.14
Show newest version
package io.github.juniqlim.apicall.http;

/**
 * interface
 */
public class HttpApiCallException extends RuntimeException {
    private final HttpResponse httpResponse;

    public HttpApiCallException(HttpResponse httpResponse, String message) {
        super(message);
        this.httpResponse = httpResponse;
    }

    public HttpResponse httpResponse() {
        return httpResponse;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy