1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-23 06:21:12 +01:00
parallel/lib/Exception/TaskException.php
2016-07-20 09:23:50 -05:00

34 lines
768 B
PHP

<?php
namespace Icicle\Concurrent\Exception;
class TaskException extends \Exception implements 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;
}
}