new: [Exception] 429 added

cli-modification-summary
iglocska 2022-02-07 01:59:33 +01:00
parent 3b21a746b9
commit a9c1619bda
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
1 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,43 @@
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @since 3.0.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace App\Http\Exception;
use Throwable;
/**
* Represents an HTTP 404 error.
*/
class TooManyRequestsException extends \Cake\Http\Exception\HttpException
{
/**
* @inheritDoc
*/
protected $_defaultCode = 429;
/**
* Constructor
*
* @param string|null $message If no message is given 'Too Many Requests' will be the message
* @param int|null $code Status code, defaults to 429
* @param \Throwable|null $previous The previous exception.
*/
public function __construct(?string $message = null, ?int $code = null, ?Throwable $previous = null)
{
if (empty($message)) {
$message = 'Too Many Requests';
}
parent::__construct($message, $code, $previous);
}
}