You are here

class CacheableNotFoundHttpException in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Http/Exception/CacheableNotFoundHttpException.php \Drupal\Core\Http\Exception\CacheableNotFoundHttpException

A cacheable NotFoundHttpException.

Hierarchy

Expanded class hierarchy of CacheableNotFoundHttpException

3 files declare their use of CacheableNotFoundHttpException
CacheableExceptionTest.php in core/tests/Drupal/Tests/Core/Http/CacheableExceptionTest.php
VersionNegotiator.php in core/modules/jsonapi/src/Revisions/VersionNegotiator.php
VersionNegotiatorTest.php in core/modules/jsonapi/tests/src/Kernel/Revisions/VersionNegotiatorTest.php

File

core/lib/Drupal/Core/Http/Exception/CacheableNotFoundHttpException.php, line 12

Namespace

Drupal\Core\Http\Exception
View source
class CacheableNotFoundHttpException extends NotFoundHttpException implements CacheableDependencyInterface {
  use CacheableDependencyTrait;

  /**
   * {@inheritdoc}
   */
  public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) {
    $this
      ->setCacheability($cacheability);
    parent::__construct($message, $previous, $code);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CacheableDependencyTrait::$cacheContexts protected property Cache contexts.
CacheableDependencyTrait::$cacheMaxAge protected property Cache max-age.
CacheableDependencyTrait::$cacheTags protected property Cache tags.
CacheableDependencyTrait::getCacheContexts public function 4
CacheableDependencyTrait::getCacheMaxAge public function 4
CacheableDependencyTrait::getCacheTags public function 4
CacheableDependencyTrait::setCacheability protected function Sets cacheability; useful for value object constructors.
CacheableNotFoundHttpException::__construct public function