HttpException.php
6 months ago
NetworkException.php
2 years ago
RequestException.php
6 months ago
TransferException.php
2 years ago
HttpException.php
75 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaHttp\Client\Exception; |
| 4 | |
| 5 | use AmeliaVendor\Psr\Http\Message\RequestInterface; |
| 6 | use AmeliaVendor\Psr\Http\Message\ResponseInterface; |
| 7 | |
| 8 | /** |
| 9 | * Thrown when a response was received but the request itself failed. |
| 10 | * |
| 11 | * In addition to the request, this exception always provides access to the response object. |
| 12 | * |
| 13 | * @author Márk Sági-Kazár <mark.sagikazar@gmail.com> |
| 14 | */ |
| 15 | class HttpException extends RequestException |
| 16 | { |
| 17 | /** |
| 18 | * @var ResponseInterface |
| 19 | */ |
| 20 | protected $response; |
| 21 | |
| 22 | /** |
| 23 | * @param string $message |
| 24 | * @param RequestInterface $request |
| 25 | * @param ResponseInterface $response |
| 26 | * @param \Exception|null $previous |
| 27 | */ |
| 28 | public function __construct( |
| 29 | $message, |
| 30 | RequestInterface $request, |
| 31 | ResponseInterface $response, |
| 32 | \Exception $previous = null |
| 33 | ) { |
| 34 | parent::__construct($message, $request, $previous); |
| 35 | |
| 36 | $this->response = $response; |
| 37 | $this->code = $response->getStatusCode(); |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Returns the response. |
| 42 | * |
| 43 | * @return ResponseInterface |
| 44 | */ |
| 45 | public function getResponse() |
| 46 | { |
| 47 | return $this->response; |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Factory method to create a new exception with a normalized error message. |
| 52 | * |
| 53 | * @param RequestInterface $request |
| 54 | * @param ResponseInterface $response |
| 55 | * @param \Exception|null $previous |
| 56 | * |
| 57 | * @return HttpException |
| 58 | */ |
| 59 | public static function create( |
| 60 | RequestInterface $request, |
| 61 | ResponseInterface $response, |
| 62 | \Exception $previous = null |
| 63 | ) { |
| 64 | $message = sprintf( |
| 65 | '[url] %s [http method] %s [status code] %s [reason phrase] %s', |
| 66 | $request->getRequestTarget(), |
| 67 | $request->getMethod(), |
| 68 | $response->getStatusCode(), |
| 69 | $response->getReasonPhrase() |
| 70 | ); |
| 71 | |
| 72 | return new self($message, $request, $response, $previous); |
| 73 | } |
| 74 | } |
| 75 |