You are here

CacheableHttpException.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/lib/Drupal/Core/Http/Exception/CacheableHttpException.php

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;

/**
 * A cacheable HttpException.
 */
class CacheableHttpException extends HttpException implements CacheableDependencyInterface {
  use CacheableDependencyTrait;

  /**
   * {@inheritdoc}
   */
  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);
  }

}

Classes

Namesort descending Description
CacheableHttpException A cacheable HttpException.