mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
e3cb5dc385
Make exception messages more generic
13 lines
248 B
PHP
13 lines
248 B
PHP
<?php
|
|
|
|
namespace Amp;
|
|
|
|
class TimeoutException extends \Exception {
|
|
/**
|
|
* @param string|null $message
|
|
*/
|
|
public function __construct(string $message = null) {
|
|
parent::__construct($message ?: "Operation timed out");
|
|
}
|
|
}
|