D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
local
/
psa
/
admin
/
plib
/
vendor
/
slim
/
slim
/
Slim
/
Exception
/
Filename :
HttpTooManyRequestsException.php
back
Copy
<?php /** * Slim Framework (https://slimframework.com) * * @license https://github.com/slimphp/Slim/blob/4.x/LICENSE.md (MIT License) */ declare(strict_types=1); namespace Slim\Exception; /** @api */ class HttpTooManyRequestsException extends HttpSpecializedException { /** * @var int */ protected $code = 429; /** * @var string */ protected $message = 'Too many requests.'; protected string $title = '429 Too Many Requests'; protected string $description = 'The client application has surpassed its rate limit, ' . 'or number of requests they can send in a given period of time.'; }