1 | <?php |
||
7 | class HttpException extends \RuntimeException implements HttpExceptionInterface |
||
8 | { |
||
9 | protected $ch; |
||
10 | protected $response; |
||
11 | |||
12 | 14 | public function __construct($message, $code, Response $response) |
|
17 | |||
18 | 1 | public function getStatusCode() |
|
22 | |||
23 | 1 | public function getReasonPhrase() |
|
27 | |||
28 | 1 | public function getResponse() |
|
32 | } |
||
33 |