| 1 | <?php |
||
| 5 | abstract class RequestException extends \RuntimeException |
||
| 6 | { |
||
| 7 | |||
| 8 | /** |
||
| 9 | * @var Response |
||
| 10 | */ |
||
| 11 | private $response; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @param string $message |
||
| 15 | * @param Response $response |
||
| 16 | */ |
||
| 17 | public function __construct($message, Response $response) |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @return Response |
||
| 26 | */ |
||
| 27 | public function getResponse() |
||
| 31 | |||
| 32 | } |
||
| 33 |