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

java-helidon.client.libraries.mp.api_exception.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
{{>licenseInfo}}
package {{apiPackage}};

import {{rootJavaEEPackage}}.ws.rs.core.Response;

public class ApiException extends Exception {
    private static final long serialVersionUID = 1L;

    private final Response response;

    public ApiException(Response response) {
        super("Api response has status code " + response.getStatus());
        this.response = response;
    }

    public Response getResponse() {
        return this.response;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy