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

de.otto.flummi.response.HttpServerErrorException Maven / Gradle / Ivy

The newest version!
package de.otto.flummi.response;

public class HttpServerErrorException extends RuntimeException {

    private final int statusCode;
    private final String responseBody;

    public HttpServerErrorException(final int statusCode, final String message, String responseBody) {
        super(statusCode + " " + message+": "+responseBody);
        this.statusCode = statusCode;
        this.responseBody = responseBody;
    }

    public String getResponseBody() {
        return responseBody;
    }

    public int getStatusCode() {
        return statusCode;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy