1 | <?php |
||
5 | class RequestFailed extends ClientException |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | private $errorCode; |
||
11 | |||
12 | public function __construct(string $message, string $errorCode = null, \Exception $previous = null) |
||
20 | |||
21 | /** |
||
22 | * Returns the error code string. |
||
23 | */ |
||
24 | public function getErrorCode() |
||
28 | } |
||
29 |