123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace Symfony\Component\HttpKernel\Exception;
- class TooManyRequestsHttpException extends HttpException
- {
-
- public function __construct($retryAfter = null, string $message = null, \Exception $previous = null, ?int $code = 0, array $headers = [])
- {
- if ($retryAfter) {
- $headers['Retry-After'] = $retryAfter;
- }
- parent::__construct(429, $message, $previous, $headers, $code);
- }
- }
|