1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 17:52:14 +01:00
parallel/lib/TaskException.php
2016-08-26 10:10:03 -05:00

30 lines
740 B
PHP

<?php declare(strict_types = 1);
namespace Amp\Parallel;
class TaskException extends \Exception {
/** @var string Stack trace of the panic. */
private $trace;
/**
* Creates a new panic error.
*
* @param string $message The panic message.
* @param int $code The panic code.
* @param string $trace The panic stack trace.
*/
public function __construct(string $message = '', int $code = 0, string $trace = '') {
parent::__construct($message, $code);
$this->trace = $trace;
}
/**
* Gets the stack trace at the point the panic occurred.
*
* @return string
*/
public function getWorkerTrace(): string {
return $this->trace;
}
}