class UnsupportedMediaTypeHttpException

UnsupportedMediaTypeHttpException.

@author Ben Ramsey <ben@benramsey.com>

Hierarchy

Expanded class hierarchy of UnsupportedMediaTypeHttpException

2 files declare their use of UnsupportedMediaTypeHttpException
FlattenExceptionTest.php in drupal/core/vendor/symfony/debug/Symfony/Component/Debug/Tests/Exception/FlattenExceptionTest.php
RequestHandler.php in drupal/core/modules/rest/lib/Drupal/rest/RequestHandler.php
Definition of Drupal\rest\RequestHandler.

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Exception/UnsupportedMediaTypeHttpException.php, line 19

Namespace

Symfony\Component\HttpKernel\Exception
View source
class UnsupportedMediaTypeHttpException 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(415, $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
UnsupportedMediaTypeHttpException::__construct public function Constructor. Overrides HttpException::__construct