1 | <?php |
||
21 | class TooManyRequestsHttpException extends HttpException |
||
22 | { |
||
23 | /** |
||
24 | * Constructor. |
||
25 | * @param string $message error message |
||
26 | * @param int $code error code |
||
27 | * @param \Exception $previous The previous exception used for the exception chaining. |
||
28 | */ |
||
29 | 1 | public function __construct($message = null, $code = 0, \Exception $previous = null) |
|
33 | } |
||
34 |