1
0
mirror of https://github.com/danog/amp.git synced 2024-11-30 04:29:08 +01:00
amp/lib/Exception/TimeoutException.php

13 lines
269 B
PHP
Raw Normal View History

2016-05-21 16:44:52 +02:00
<?php
2016-05-24 05:48:28 +02:00
namespace Amp\Exception;
2016-05-21 16:44:52 +02:00
class TimeoutException extends \RuntimeException {
/**
* @param string|null $message
*/
public function __construct($message = null) {
parent::__construct($message ?: "Awaitable resolution timed out");
}
}