| 1 |
<?php |
| 2 |
|
| 3 |
declare (strict_types=1); |
| 4 |
namespace Dudlewebs\WPMCS\s3\GuzzleHttp\Promise; |
| 5 |
|
| 6 |
/** |
| 7 |
* A special exception that is thrown when waiting on a rejected promise. |
| 8 |
* |
| 9 |
* The reason value is available via the getReason() method. |
| 10 |
*/ |
| 11 |
class RejectionException extends \RuntimeException |
| 12 |
{ |
| 13 |
/** @var mixed Rejection reason. */ |
| 14 |
private $reason; |
| 15 |
/** |
| 16 |
* @param mixed $reason Rejection reason. |
| 17 |
* @param string|null $description Optional description. |
| 18 |
*/ |
| 19 |
public function __construct($reason, ?string $description = null) |
| 20 |
{ |
| 21 |
$this->reason = $reason; |
| 22 |
$message = 'The promise was rejected'; |
| 23 |
if ($description) { |
| 24 |
$message .= ' with reason: ' . $description; |
| 25 |
} elseif (\is_string($reason) || \is_object($reason) && \method_exists($reason, '__toString')) { |
| 26 |
$message .= ' with reason: ' . $this->reason; |
| 27 |
} elseif ($reason instanceof \JsonSerializable) { |
| 28 |
$message .= ' with reason: ' . \json_encode($this->reason, \JSON_PRETTY_PRINT); |
| 29 |
} |
| 30 |
parent::__construct($message); |
| 31 |
} |
| 32 |
/** |
| 33 |
* Returns the rejection reason. |
| 34 |
* |
| 35 |
* @return mixed |
| 36 |
*/ |
| 37 |
public function getReason() |
| 38 |
{ |
| 39 |
return $this->reason; |
| 40 |
} |
| 41 |
} |
| 42 |
|