You are here

public function CacheablePreconditionRequiredHttpException::__construct in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Http/Exception/CacheablePreconditionRequiredHttpException.php \Drupal\Core\Http\Exception\CacheablePreconditionRequiredHttpException::__construct()
  2. 9 core/lib/Drupal/Core/Http/Exception/CacheablePreconditionRequiredHttpException.php \Drupal\Core\Http\Exception\CacheablePreconditionRequiredHttpException::__construct()

File

core/lib/Drupal/Core/Http/Exception/CacheablePreconditionRequiredHttpException.php, line 19

Class

CacheablePreconditionRequiredHttpException
A cacheable PreconditionRequiredHttpException.

Namespace

Drupal\Core\Http\Exception

Code

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