mirror of
https://github.com/danog/amp.git
synced 2024-11-26 20:15:00 +01:00
20 lines
372 B
PHP
20 lines
372 B
PHP
<?php
|
|
|
|
namespace Amp;
|
|
|
|
/**
|
|
* Thrown if a promise doesn't resolve within a specified timeout.
|
|
*
|
|
* @see \Amp\Promise\timeout()
|
|
*/
|
|
class TimeoutException extends \Exception
|
|
{
|
|
/**
|
|
* @param string|null $message Exception message.
|
|
*/
|
|
public function __construct(string $message = "Operation timed out")
|
|
{
|
|
parent::__construct($message);
|
|
}
|
|
}
|