CacheableMethodNotAllowedHttpException.php

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

Namespace

Drupal\Core\Http\Exception

File

core/lib/Drupal/Core/Http/Exception/CacheableMethodNotAllowedHttpException.php

View source
<?php

namespace Drupal\Core\Http\Exception;

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

/**
 * A cacheable MethodNotAllowedHttpException.
 */
class CacheableMethodNotAllowedHttpException extends MethodNotAllowedHttpException implements CacheableDependencyInterface {
    use CacheableDependencyTrait;
    
    /**
     * {@inheritdoc}
     */
    public function __construct(CacheableDependencyInterface $cacheability, array $allow, $message = NULL, \Exception $previous = NULL, $code = 0) {
        $this->setCacheability($cacheability);
        parent::__construct($allow, $message, $previous, $code);
    }

}

Classes

Title Deprecated Summary
CacheableMethodNotAllowedHttpException A cacheable MethodNotAllowedHttpException.

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