1 | <?php declare(strict_types=1); |
||
7 | class ResponseException extends \RuntimeException implements TinkoffSDKException |
||
8 | { |
||
9 | /** |
||
10 | * @var Response |
||
11 | */ |
||
12 | private $response; |
||
13 | |||
14 | public function __construct(Response $response) |
||
20 | |||
21 | /** |
||
22 | * Get a response instance. |
||
23 | * |
||
24 | * @return Response |
||
25 | */ |
||
26 | public function getResponse(): Response |
||
30 | } |
||
31 |