PluginProbe
Media Cloud Sync / 1.3.11
Media Cloud Sync v1.3.11
1.4.0 1.3.12 1.3.11 1.3.10 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.2.0 1.2.10 1.2.11 1.2.12 1.2.13 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 All 34 releases
media-cloud-sync / includes / sdk / s3 / GuzzleHttp / Promise / RejectionException.php

RejectionException.php in Media Cloud Sync 1.3.11, at includes/sdk/s3/GuzzleHttp/Promise/RejectionException.php

42 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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