| 1 | <?php declare(strict_types = 1); |
||
| 7 | class RequestFailedException extends Exception |
||
| 8 | { |
||
| 9 | private $extraErrorInfo; |
||
| 10 | |||
| 11 | public function __construct(string $message, int $code = 0, \Throwable $previous = null, array $extraErrorInfo = []) |
||
| 17 | |||
| 18 | public function hasExtraErrorInfo(): bool |
||
| 22 | |||
| 23 | public function getExtraErrorInfo(): array |
||
| 27 | } |
||
| 28 |