1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-03 10:07:49 +01:00
parallel/lib/Sync/ExitFailure.php
2017-07-28 17:34:24 -05:00

43 lines
924 B
PHP

<?php
namespace Amp\Parallel\Sync;
use Amp\Parallel\PanicError;
class ExitFailure implements ExitResult {
/** @var string */
private $type;
/** @var string */
private $message;
/** @var int */
private $code;
/** @var array */
private $trace;
public function __construct(\Throwable $exception) {
$this->type = \get_class($exception);
$this->message = $exception->getMessage();
$this->code = $exception->getCode();
$this->trace = $exception->getTraceAsString();
}
/**
* {@inheritdoc}
*/
public function getResult() {
throw new PanicError(
$this->type,
\sprintf(
'Uncaught exception in execution context of type "%s" with message "%s"',
$this->type,
$this->message
),
$this->code,
$this->trace
);
}
}