| 1 | <?php |
||
| 7 | abstract class ApiException extends PostpayException |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var Response The response that threw the exception. |
||
| 11 | */ |
||
| 12 | protected $response; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var array Decoded response. |
||
| 16 | */ |
||
| 17 | protected $decodedBody; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Returns the response entity. |
||
| 21 | * |
||
| 22 | * @return Response |
||
| 23 | */ |
||
| 24 | 1 | public function getResponse() |
|
| 28 | } |
||
| 29 |