1 | <?php |
||
7 | class HttpException extends \RuntimeException implements HttpExceptionInterface |
||
8 | { |
||
9 | protected $ch; |
||
10 | protected $response; |
||
11 | |||
12 | 7 | public function __construct($message, $code, $ch, Response $response) |
|
18 | |||
19 | public function getStatusCode() |
||
23 | |||
24 | public function getReasonPhrase() |
||
28 | |||
29 | public function getHandle() |
||
33 | |||
34 | public function getResponse() |
||
38 | } |
||
39 |