class BadRequestHttpException

BadRequestHttpException.

@author Ben Ramsey <ben@benramsey.com>

Hierarchy

Expanded class hierarchy of BadRequestHttpException

5 files declare their use of BadRequestHttpException
ajax.inc in drupal/core/includes/ajax.inc
Functions for use with Drupal's Ajax framework.
ContextualController.php in drupal/core/modules/contextual/lib/Drupal/contextual/ContextualController.php
Contains \Drupal\contextual\ContextualController.
EntityResource.php in drupal/core/modules/rest/lib/Drupal/rest/Plugin/rest/resource/EntityResource.php
Definition of Drupal\rest\Plugin\rest\resource\EntityResource.
FlattenExceptionTest.php in drupal/core/vendor/symfony/debug/Symfony/Component/Debug/Tests/Exception/FlattenExceptionTest.php
xmlrpc.server.inc in drupal/core/modules/xmlrpc/xmlrpc.server.inc
Page callback file for the xmlrpc module.

File

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

Namespace

Symfony\Component\HttpKernel\Exception
View source
class BadRequestHttpException 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(400, $message, $previous, array(), $code);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
BadRequestHttpException::__construct public function Constructor. Overrides HttpException::__construct
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