| 1 | <?php |
||
| 7 | class ApiException extends \RuntimeException |
||
| 8 | { |
||
| 9 | private $response; |
||
| 10 | |||
| 11 | 3 | public function __construct($message, $code, ResponseInterface $response) |
|
| 17 | |||
| 18 | 1 | public function getResponse() |
|
| 19 | { |
||
| 20 | 1 | return $this->response; |
|
| 21 | } |
||
| 22 | |||
| 23 | 2 | public static function fromResponse(ResponseInterface $response) |
|
| 27 | } |
||
| 28 |