1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-27 04:44:56 +01:00
parallel/lib/Sync/ExitFailure.php
Aaron Piotrowski 4426686e54
Reorganize
2017-12-07 21:26:55 -06:00

41 lines
919 B
PHP

<?php
namespace Amp\Parallel\Sync;
class ExitFailure implements ExitResult {
/** @var string */
private $type;
/** @var string */
private $message;
/** @var int|string */
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" and code "%s"',
$this->type,
$this->message,
$this->code
),
$this->trace
);
}
}