class CacheableGoneHttpException in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Http/Exception/CacheableGoneHttpException.php \Drupal\Core\Http\Exception\CacheableGoneHttpException
- 10 core/lib/Drupal/Core/Http/Exception/CacheableGoneHttpException.php \Drupal\Core\Http\Exception\CacheableGoneHttpException
A cacheable GoneHttpException.
Hierarchy
- class \Drupal\Core\Http\Exception\CacheableGoneHttpException extends \Symfony\Component\HttpKernel\Exception\GoneHttpException implements CacheableDependencyInterface uses CacheableDependencyTrait
Expanded class hierarchy of CacheableGoneHttpException
File
- core/
lib/ Drupal/ Core/ Http/ Exception/ CacheableGoneHttpException.php, line 12
Namespace
Drupal\Core\Http\ExceptionView source
class CacheableGoneHttpException extends GoneHttpException 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CacheableDependencyTrait:: |
protected | property | Cache contexts. | |
CacheableDependencyTrait:: |
protected | property | Cache max-age. | |
CacheableDependencyTrait:: |
protected | property | Cache tags. | |
CacheableDependencyTrait:: |
public | function | 3 | |
CacheableDependencyTrait:: |
public | function | 3 | |
CacheableDependencyTrait:: |
public | function | 3 | |
CacheableDependencyTrait:: |
protected | function | Sets cacheability; useful for value object constructors. | |
CacheableGoneHttpException:: |
public | function | Constructor. |