blob: 18ea72f5f01f6f76421f3724904d43eea13bfc27 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
namespace React\Promise\Timer;
use RuntimeException;
class TimeoutException extends RuntimeException
{
private $timeout;
public function __construct($timeout, $message = null, $code = null, $previous = null)
{
parent::__construct($message, $code, $previous);
$this->timeout = $timeout;
}
public function getTimeout()
{
return $this->timeout;
}
}
|