CacheableHttpException.php

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

Namespace

Drupal\Core\Http\Exception

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, $code = 0) {
        $this->setCacheability($cacheability);
        parent::__construct($statusCode, $message, $previous, $code);
    }

}

Classes

Title Deprecated Summary
CacheableHttpException A cacheable HttpException.

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