You are here

class BrokenPostRequestException in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Form/Exception/BrokenPostRequestException.php \Drupal\Core\Form\Exception\BrokenPostRequestException

Defines an exception used, when the POST HTTP body is broken.

Hierarchy

Expanded class hierarchy of BrokenPostRequestException

3 files declare their use of BrokenPostRequestException
FormAjaxSubscriber.php in core/lib/Drupal/Core/Form/EventSubscriber/FormAjaxSubscriber.php
Contains \Drupal\Core\Form\EventSubscriber\FormAjaxSubscriber.
FormAjaxSubscriberTest.php in core/tests/Drupal/Tests/Core/Form/EventSubscriber/FormAjaxSubscriberTest.php
Contains \Drupal\Tests\Core\Form\EventSubscriber\FormAjaxSubscriberTest.
FormBuilder.php in core/lib/Drupal/Core/Form/FormBuilder.php
Contains \Drupal\Core\Form\FormBuilder.

File

core/lib/Drupal/Core/Form/Exception/BrokenPostRequestException.php, line 15
Contains \Drupal\Core\Form\Exception\BrokenPostRequestException.

Namespace

Drupal\Core\Form\Exception
View source
class BrokenPostRequestException extends BadRequestHttpException {

  /**
   * The maximum upload size.
   *
   * @var string
   */
  protected $size;

  /**
   * Constructs a new BrokenPostRequestException.
   *
   * @param string $max_upload_size
   *   The size of the maximum upload size.
   * @param string $message
   *   The internal exception message.
   * @param \Exception $previous
   *   The previous exception.
   * @param int $code
   *   The internal exception code.
   */
  public function __construct($max_upload_size, $message = NULL, \Exception $previous = NULL, $code = 0) {
    parent::__construct($message, $previous, $code);
    $this->size = $max_upload_size;
  }

  /**
   * Returns the maximum upload size.
   *
   * @return string
   *   A translated string representation of the size of the file size limit
   *   based on the PHP upload_max_filesize and post_max_size.
   */
  public function getSize() {
    return $this->size;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
BrokenPostRequestException::$size protected property The maximum upload size.
BrokenPostRequestException::getSize public function Returns the maximum upload size.
BrokenPostRequestException::__construct public function Constructs a new BrokenPostRequestException. Overrides BadRequestHttpException::__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