class CacheableServiceUnavailableHttpException in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Http/Exception/CacheableServiceUnavailableHttpException.php \Drupal\Core\Http\Exception\CacheableServiceUnavailableHttpException
A cacheable ServiceUnavailableHttpException.
Hierarchy
- class \Drupal\Core\Http\Exception\CacheableServiceUnavailableHttpException extends \Symfony\Component\HttpKernel\Exception\ServiceUnavailableHttpException implements CacheableDependencyInterface uses CacheableDependencyTrait
Expanded class hierarchy of CacheableServiceUnavailableHttpException
File
- core/
lib/ Drupal/ Core/ Http/ Exception/ CacheableServiceUnavailableHttpException.php, line 12
Namespace
Drupal\Core\Http\ExceptionView source
class CacheableServiceUnavailableHttpException extends ServiceUnavailableHttpException implements CacheableDependencyInterface {
use CacheableDependencyTrait;
/**
* {@inheritdoc}
*/
public function __construct(CacheableDependencyInterface $cacheability, $retryAfter = NULL, $message = NULL, \Exception $previous = NULL, $code = 0) {
$this
->setCacheability($cacheability);
parent::__construct($retryAfter, $message, $previous, $code);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CacheableDependencyTrait:: |
protected | property | Cache contexts. | |
CacheableDependencyTrait:: |
protected | property | Cache max-age. | |
CacheableDependencyTrait:: |
protected | property | Cache tags. | |
CacheableDependencyTrait:: |
public | function | 3 | |
CacheableDependencyTrait:: |
public | function | 3 | |
CacheableDependencyTrait:: |
public | function | 3 | |
CacheableDependencyTrait:: |
protected | function | Sets cacheability; useful for value object constructors. | |
CacheableServiceUnavailableHttpException:: |
public | function | Constructor. |