class BadResponseException

Http request exception thrown when a bad response is received

Hierarchy

Expanded class hierarchy of BadResponseException

3 files declare their use of BadResponseException
DefaultFetcher.php in drupal/core/modules/aggregator/lib/Drupal/aggregator/Plugin/aggregator/fetcher/DefaultFetcher.php
Definition of Drupal\aggregator\Plugin\aggregator\fetcher\DefaultFetcher.
Request.php in drupal/core/vendor/guzzle/http/Guzzle/Http/Message/Request.php
Response.php in drupal/core/vendor/guzzle/http/Guzzle/Http/Message/Response.php

File

drupal/core/vendor/guzzle/http/Guzzle/Http/Exception/BadResponseException.php, line 11

Namespace

Guzzle\Http\Exception
View source
class BadResponseException extends RequestException {

  /**
   * @var Response
   */
  private $response;

  /**
   * Factory method to create a new response exception based on the response code.
   *
   * @param RequestInterface $request  Request
   * @param Response         $response Response received
   *
   * @return BadResponseException
   */
  public static function factory(RequestInterface $request, Response $response) {
    if ($response
      ->isClientError()) {
      $label = 'Client error response';
      $class = __NAMESPACE__ . '\\ClientErrorResponseException';
    }
    elseif ($response
      ->isServerError()) {
      $label = 'Server error response';
      $class = __NAMESPACE__ . '\\ServerErrorResponseException';
    }
    else {
      $label = 'Unsuccessful response';
      $class = __CLASS__;
      $e = new self();
    }
    $message = $label . PHP_EOL . implode(PHP_EOL, array(
      '[status code] ' . $response
        ->getStatusCode(),
      '[reason phrase] ' . $response
        ->getReasonPhrase(),
      '[url] ' . $request
        ->getUrl(),
      '[request] ' . (string) $request,
      '[response] ' . (string) $response,
    ));
    $e = new $class($message);
    $e
      ->setResponse($response);
    $e
      ->setRequest($request);
    return $e;
  }

  /**
   * Set the response that caused the exception
   *
   * @param Response $response Response to set
   */
  public function setResponse(Response $response) {
    $this->response = $response;
  }

  /**
   * Get the response that caused the exception
   *
   * @return Response
   */
  public function getResponse() {
    return $this->response;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
BadResponseException::$response private property
BadResponseException::factory public static function Factory method to create a new response exception based on the response code.
BadResponseException::getResponse public function Get the response that caused the exception
BadResponseException::setResponse public function Set the response that caused the exception
RequestException::$request protected property
RequestException::getRequest public function Get the request that caused the exception
RequestException::setRequest public function Set the request that caused the exception