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

pl.touk.sputnik.connector.http.HttpException Maven / Gradle / Ivy

Go to download

Static code review for your Gerrit and Stash patchsets. Runs Checkstyle, PMD and SpotBugs for you!

There is a newer version: 2.8.0
Show newest version
package pl.touk.sputnik.connector.http;

import org.apache.http.HttpResponse;

public class HttpException extends RuntimeException {

    private final HttpResponse response;

    public HttpException(HttpResponse response) {
        this.response = response;
    }

    public int getStatusCode() {
        return response.getStatusLine().getStatusCode();
    }

    public String getMessage() {
        return "Response status [" + getStatusCode() + "]";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy