ok
Direktori : /home2/selectio/public_html/fms-worksuite/vendor/amphp/parallel/lib/Sync/ |
Current File : /home2/selectio/public_html/fms-worksuite/vendor/amphp/parallel/lib/Sync/ExitFailure.php |
<?php namespace Amp\Parallel\Sync; final class ExitFailure implements ExitResult { /** @var string */ private $type; /** @var string */ private $message; /** @var int|string */ private $code; /** @var string[] */ private $trace; /** @var self|null */ private $previous; public function __construct(\Throwable $exception) { $this->type = \get_class($exception); $this->message = $exception->getMessage(); $this->code = $exception->getCode(); $this->trace = flattenThrowableBacktrace($exception); if ($previous = $exception->getPrevious()) { $this->previous = new self($previous); } } /** * {@inheritdoc} */ public function getResult() { throw $this->createException(); } private function createException(): ContextPanicError { $previous = $this->previous ? $this->previous->createException() : null; return new ContextPanicError($this->type, $this->message, $this->code, $this->trace, $previous); } }