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