| 1 | <?php |
||
| 8 | class UnknownErrorResponseException extends Exception |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | private $response; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * UnknownErrorResponseException constructor. |
||
| 17 | * @param string $message |
||
| 18 | * @param string $response |
||
| 19 | */ |
||
| 20 | 1 | public function __construct($message = '', $response = null) |
|
| 26 | |||
| 27 | public function __toString() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | public function getResponse() |
||
| 42 | } |
||
| 43 |