Icicle\Concurrent\Exception\TaskException::__construct PHP Method

__construct() public method

Creates a new panic error.
public __construct ( string $message = '', integer $code, string $trace = '' )
$message string The panic message.
$code integer The panic code.
$trace string The panic stack trace.
    public function __construct(string $message = '', int $code = 0, string $trace = '')
    {
        parent::__construct($message, $code);
        $this->trace = $trace;
    }