CacheableNotFoundHttpException.php

Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/Http/Exception/CacheableNotFoundHttpException.php
  2. 8.9.x core/lib/Drupal/Core/Http/Exception/CacheableNotFoundHttpException.php
  3. 10 core/lib/Drupal/Core/Http/Exception/CacheableNotFoundHttpException.php

Namespace

Drupal\Core\Http\Exception

File

core/lib/Drupal/Core/Http/Exception/CacheableNotFoundHttpException.php

View source
<?php

namespace Drupal\Core\Http\Exception;

use Drupal\Core\Cache\CacheableDependencyInterface;
use Drupal\Core\Cache\CacheableDependencyTrait;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;

/**
 * A cacheable NotFoundHttpException.
 */
class CacheableNotFoundHttpException extends NotFoundHttpException implements CacheableDependencyInterface {
  use CacheableDependencyTrait;
  
  /**
   * {@inheritdoc}
   */
  public function __construct(CacheableDependencyInterface $cacheability, $message = '', ?\Throwable $previous = NULL, $code = 0) {
    $this->setCacheability($cacheability);
    parent::__construct($message, $previous, $code);
  }

}

Classes

Title Deprecated Summary
CacheableNotFoundHttpException A cacheable NotFoundHttpException.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.