CacheableTooManyRequestsHttpException.php
Same filename in other branches
Namespace
Drupal\Core\Http\ExceptionFile
-
core/
lib/ Drupal/ Core/ Http/ Exception/ CacheableTooManyRequestsHttpException.php
View source
<?php
namespace Drupal\Core\Http\Exception;
use Drupal\Core\Cache\CacheableDependencyInterface;
use Drupal\Core\Cache\CacheableDependencyTrait;
use Symfony\Component\HttpKernel\Exception\TooManyRequestsHttpException;
/**
* A cacheable TooManyRequestsHttpException.
*/
class CacheableTooManyRequestsHttpException extends TooManyRequestsHttpException implements CacheableDependencyInterface {
use CacheableDependencyTrait;
/**
* {@inheritdoc}
*/
public function __construct(CacheableDependencyInterface $cacheability, $retryAfter = NULL, $message = '', ?\Exception $previous = NULL, $code = 0) {
$this->setCacheability($cacheability);
parent::__construct($retryAfter, $message, $previous, $code);
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
CacheableTooManyRequestsHttpException | A cacheable TooManyRequestsHttpException. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.