1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-22 14:01:14 +01:00
parallel/lib/TaskException.php
2016-08-23 16:47:40 -05:00

32 lines
752 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;
}
}