You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
774 B
39 lines
774 B
<?php |
|
|
|
namespace Guzzle\Http\Exception; |
|
|
|
use Guzzle\Common\Exception\RuntimeException; |
|
use Guzzle\Http\Message\RequestInterface; |
|
|
|
/** |
|
* Http request exception |
|
*/ |
|
class RequestException extends RuntimeException implements HttpException |
|
{ |
|
/** @var RequestInterface */ |
|
protected $request; |
|
|
|
/** |
|
* Set the request that caused the exception |
|
* |
|
* @param RequestInterface $request Request to set |
|
* |
|
* @return RequestException |
|
*/ |
|
public function setRequest(RequestInterface $request) |
|
{ |
|
$this->request = $request; |
|
|
|
return $this; |
|
} |
|
|
|
/** |
|
* Get the request that caused the exception |
|
* |
|
* @return RequestInterface |
|
*/ |
|
public function getRequest() |
|
{ |
|
return $this->request; |
|
} |
|
}
|
|
|