You are here

class BadRequestException in RESTful 7.2

Hierarchy

Expanded class hierarchy of BadRequestException

21 files declare their use of BadRequestException
CookieAuthentication.php in src/Plugin/authentication/CookieAuthentication.php
Contains \Drupal\restful\Plugin\authentication\CookieAuthentication
DataProvider.php in src/Plugin/resource/DataProvider/DataProvider.php
Contains \Drupal\restful\Plugin\resource\DataProvider\DataProvider.
DataProviderDbQuery.php in src/Plugin/resource/DataProvider/DataProviderDbQuery.php
Contains \Drupal\restful\Plugin\resource\DataProvider\DataProviderDbQuery.
DataProviderEntity.php in src/Plugin/resource/DataProvider/DataProviderEntity.php
Contains \Drupal\restful\Plugin\resource\DataProvider\DataProviderEntity.
DataProviderEntityDecorator.php in src/Plugin/resource/DataProvider/DataProviderEntityDecorator.php
Contains \Drupal\restful\Plugin\resource\DataProvider\DataProviderEntityDecorator.

... See full list

File

src/Exception/BadRequestException.php, line 10
Contains \Drupal\restful\Exception\BadRequestException.

Namespace

Drupal\restful\Exception
View source
class BadRequestException extends RestfulException {

  /**
   * Defines the HTTP error code.
   *
   * @var int
   */
  protected $code = 400;

  /**
   * {@inheritdoc}
   */
  protected $instance = 'help/restful/problem-instances-bad-request';

}

Members

Namesort descending Modifiers Type Description Overrides
BadRequestException::$code protected property Defines the HTTP error code.
BadRequestException::$instance protected property Defines the instance resource. Overrides RestfulException::$instance
RestfulException::$description protected property Exception description. 4
RestfulException::$fieldErrors protected property Array keyed by the field name, and array of error messages as value.
RestfulException::$headers protected property Array of extra headers to set when throwing an exception.
RestfulException::addFieldError public function Add an error per field.
RestfulException::getDescription final public function Gets the description of the exception.
RestfulException::getFieldErrors public function Return an array with all the errors.
RestfulException::getHeaders public function Get the associative array of headers.
RestfulException::getInstance public function Get the URL to the error for the particular case.
RestfulException::getType public function Return a string to the common problem type.
RestfulException::setHeader public function Set a header.