You are here

class NotAcceptableHttpException in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Exception/NotAcceptableHttpException.php \Symfony\Component\HttpKernel\Exception\NotAcceptableHttpException

NotAcceptableHttpException.

@author Ben Ramsey <ben@benramsey.com>

Hierarchy

Expanded class hierarchy of NotAcceptableHttpException

4 files declare their use of NotAcceptableHttpException
AcceptHeaderMatcher.php in core/modules/system/tests/modules/accept_header_routing_test/src/Routing/AcceptHeaderMatcher.php
Contains \Drupal\accept_header_routing_test\Routing\AcceptHeaderMatcher.
AcceptNegotiation406.php in core/lib/Drupal/Core/EventSubscriber/AcceptNegotiation406.php
Contains \Drupal\Core\EventSubscriber\AcceptNegotiation406.
FlattenExceptionTest.php in vendor/symfony/debug/Tests/Exception/FlattenExceptionTest.php
RequestFormatRouteFilter.php in core/lib/Drupal/Core/Routing/RequestFormatRouteFilter.php
Contains \Drupal\Core\Routing\RequestFormatRouteFilter.

File

vendor/symfony/http-kernel/Exception/NotAcceptableHttpException.php, line 19

Namespace

Symfony\Component\HttpKernel\Exception
View source
class NotAcceptableHttpException extends HttpException {

  /**
   * Constructor.
   *
   * @param string     $message  The internal exception message
   * @param \Exception $previous The previous exception
   * @param int        $code     The internal exception code
   */
  public function __construct($message = null, \Exception $previous = null, $code = 0) {
    parent::__construct(406, $message, $previous, array(), $code);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
HttpException::$headers private property
HttpException::$statusCode private property
HttpException::getHeaders public function Returns response headers. Overrides HttpExceptionInterface::getHeaders
HttpException::getStatusCode public function Returns the status code. Overrides HttpExceptionInterface::getStatusCode
NotAcceptableHttpException::__construct public function Constructor. Overrides HttpException::__construct