You are here

class CacheableNotAcceptableHttpException in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Http/Exception/CacheableNotAcceptableHttpException.php \Drupal\Core\Http\Exception\CacheableNotAcceptableHttpException
  2. 10 core/lib/Drupal/Core/Http/Exception/CacheableNotAcceptableHttpException.php \Drupal\Core\Http\Exception\CacheableNotAcceptableHttpException

A cacheable NotAcceptableHttpException.

Hierarchy

Expanded class hierarchy of CacheableNotAcceptableHttpException

File

core/lib/Drupal/Core/Http/Exception/CacheableNotAcceptableHttpException.php, line 12

Namespace

Drupal\Core\Http\Exception
View source
class CacheableNotAcceptableHttpException extends NotAcceptableHttpException implements CacheableDependencyInterface {
  use CacheableDependencyTrait;

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

}

Members

Namesort descending Modifiers Type Description Overrides
CacheableDependencyTrait::$cacheContexts protected property Cache contexts.
CacheableDependencyTrait::$cacheMaxAge protected property Cache max-age.
CacheableDependencyTrait::$cacheTags protected property Cache tags.
CacheableDependencyTrait::getCacheContexts public function 3
CacheableDependencyTrait::getCacheMaxAge public function 3
CacheableDependencyTrait::getCacheTags public function 3
CacheableDependencyTrait::setCacheability protected function Sets cacheability; useful for value object constructors.
CacheableNotAcceptableHttpException::__construct public function Constructor.