| 1 | <?php |
||
| 11 | class RequestException extends \Exception |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var int |
||
| 15 | */ |
||
| 16 | protected $responseCode; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param int $code |
||
| 20 | * @param string $message |
||
| 21 | */ |
||
| 22 | public function __construct(int $code, string $message) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return int |
||
| 31 | */ |
||
| 32 | public function getResponseCode() |
||
| 36 | } |
||
| 37 |