You are here

CacheablePreconditionRequiredHttpException.php in Drupal 10

File

core/lib/Drupal/Core/Http/Exception/CacheablePreconditionRequiredHttpException.php
View source
<?php

namespace Drupal\Core\Http\Exception;

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

/**
 * A cacheable PreconditionRequiredHttpException.
 */
class CacheablePreconditionRequiredHttpException extends PreconditionRequiredHttpException implements CacheableDependencyInterface {
  use CacheableDependencyTrait;

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

}

Classes

Namesort descending Description
CacheablePreconditionRequiredHttpException A cacheable PreconditionRequiredHttpException.