Package org.maximchuk.teamcity.api.exception

Examples of org.maximchuk.teamcity.api.exception.HttpException


    private void validateResponse(HttpResponse response) throws HttpException {
        StatusLine status = response.getStatusLine();

        if (status.getStatusCode() != 200) {
            throw new HttpException(response);
        }
    }
View Full Code Here

TOP

Related Classes of org.maximchuk.teamcity.api.exception.HttpException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.