| 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 | /** |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | public function getResponse() |
||
| 34 | } |
||
| 35 |