CacheableHttpException.php in Drupal 9
File
core/lib/Drupal/Core/Http/Exception/CacheableHttpException.php
View source
<?php
namespace Drupal\Core\Http\Exception;
use Drupal\Core\Cache\CacheableDependencyInterface;
use Drupal\Core\Cache\CacheableDependencyTrait;
use Symfony\Component\HttpKernel\Exception\HttpException;
class CacheableHttpException extends HttpException implements CacheableDependencyInterface {
use CacheableDependencyTrait;
public function __construct(CacheableDependencyInterface $cacheability, $statusCode = 0, $message = NULL, \Exception $previous = NULL, array $headers = [], $code = 0) {
$this
->setCacheability($cacheability);
parent::__construct($statusCode, $message, $previous, $headers, $code);
}
}