mirror of
https://github.com/danog/amp.git
synced 2025-01-22 21:31:18 +01:00
13 lines
269 B
PHP
13 lines
269 B
PHP
<?php
|
|
|
|
namespace Amp\Exception;
|
|
|
|
class TimeoutException extends \RuntimeException {
|
|
/**
|
|
* @param string|null $message
|
|
*/
|
|
public function __construct($message = null) {
|
|
parent::__construct($message ?: "Awaitable resolution timed out");
|
|
}
|
|
}
|