cerebrate/src/Http/Exception/TooManyRequestsException.php

44 lines
1.2 KiB
PHP

<?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);
}
}