phake\TaskNotFoundException::__construct PHP Метод

__construct() публичный Метод

Constructor
public __construct ( string $taskName )
$taskName string name of task which is not found
    public function __construct($taskName)
    {
        parent::__construct(sprintf('Task "%s" not found', $taskName));
        $this->taskName = $taskName;
    }
TaskNotFoundException