Coroutine/Exceptions/TimeoutCancellationError.php
<?php
namespace Async;
use Async\CancelledError;
class TimeoutCancellationError extends CancelledError
{
public function __construct($time = null)
{
parent::__construct(\sprintf('The operation has exceeded the given deadline: %f', (float) $time));
}
}