Example usage for org.apache.http.client HttpResponseException subclass-usage

List of usage examples for org.apache.http.client HttpResponseException subclass-usage

Introduction

In this page you can find the example usage for org.apache.http.client HttpResponseException subclass-usage.

Usage

From source file io.restassured.internal.http.HttpResponseException.java

/**
 * Wraps an error response in an exception for flow control purposes.  That is,
 * you can still inspect response headers, but in a 
 * <code>catch( HttpResponseException ex ) {  }</code> block. 
 * 
 * @author <a href='mailto:tomstrummer+httpbuilder@gmail.com'>Tom Nichols</a>

From source file com.jayway.restassured.internal.http.HttpResponseException.java

/**
 * Wraps an error response in an exception for flow control purposes.  That is,
 * you can still inspect response headers, but in a 
 * <code>catch( HttpResponseException ex ) {  }</code> block. 
 * 
 * @author <a href='mailto:tomstrummer+httpbuilder@gmail.com'>Tom Nichols</a>

From source file de.aflx.sardine.impl.SardineException.java

/**
 * Specialized type of exception for Sardine so
 * that it is easy to get the error information from it.
 *
 * @author jonstevens
 * @version $Id: SardineException.java 309 2011-11-18 09:27:52Z dkocher@sudo.ch $

From source file com.github.sardine.impl.SardineException.java

/**
 * Specialized type of exception for Sardine so
 * that it is easy to get the error information from it.
 *
 * @author jonstevens
 */

From source file com.googlecode.sardine.impl.SardineException.java

/**
 * Specialized type of exception for Sardine so
 * that it is easy to get the error information from it.
 *
 * @author jonstevens
 * @version $Id: SardineException.java 309 2011-11-18 09:27:52Z dkocher@sudo.ch $

From source file com.abc.client.abcAuth.AbcAuthClientException.java

public class AbcAuthClientException extends HttpResponseException {
    private Header[] httpHeaders;
    private StatusLine httpStatusLine;

    public AbcAuthClientException(int code, String message) {
        super(code, message);

From source file com.abc.client.abcStor.AbcStorClientException.java

public class AbcStorClientException extends HttpResponseException {
    private Header[] httpHeaders;
    private StatusLine httpStatusLine;

    public AbcStorClientException(int code, String message) {
        super(code, message);

From source file com.intel.cosbench.client.swauth.SwiftAuthClientException.java

public class SwiftAuthClientException extends HttpResponseException {
    private Header[] httpHeaders;
    private StatusLine httpStatusLine;

    public SwiftAuthClientException(int code, String message) {
        super(code, message);

From source file groovyx.net.http.HttpResponseException.java

/**
 * Wraps an error response in an exception for flow control purposes.  That is,
 * you can still inspect response headers, but in a
 * <code>catch( HttpResponseException ex ) {  }</code> block.
 *
 * @author <a href='mailto:tomstrummer+httpbuilder@gmail.com'>Tom Nichols</a>

From source file com.qwazr.utils.http.HttpResponseEntityException.java

public class HttpResponseEntityException extends HttpResponseException {

    private static final long serialVersionUID = 1958648159987063347L;

    private final String contentType;
    private final String contentMessage;