class NotAcceptableHttpException

NotAcceptableHttpException.

@author Ben Ramsey <ben@benramsey.com>

Hierarchy

Expanded class hierarchy of NotAcceptableHttpException

3 files declare their use of NotAcceptableHttpException
FlattenExceptionTest.php in drupal/core/vendor/symfony/debug/Symfony/Component/Debug/Tests/Exception/FlattenExceptionTest.php
MimeTypeMatcher.php in drupal/core/lib/Drupal/Core/Routing/MimeTypeMatcher.php
Contains Drupal\Core\Routing\MimeTypeMatcher.
MimeTypeMatcherTest.php in drupal/core/modules/system/lib/Drupal/system/Tests/Routing/MimeTypeMatcherTest.php
Contains Drupal\system\Tests\Routing\MimeTypeMatcherTest.

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/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 integer    $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