think\process\exception\Timeout::__construct PHP Метод

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

public __construct ( Process $process, $timeoutType )
$process think\Process
    public function __construct(Process $process, $timeoutType)
    {
        $this->process = $process;
        $this->timeoutType = $timeoutType;
        parent::__construct(sprintf('The process "%s" exceeded the timeout of %s seconds.', $process->getCommandLine(), $this->getExceededTimeout()));
    }