class BrokenPostRequestException
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Form/Exception/BrokenPostRequestException.php \Drupal\Core\Form\Exception\BrokenPostRequestException
- 10 core/lib/Drupal/Core/Form/Exception/BrokenPostRequestException.php \Drupal\Core\Form\Exception\BrokenPostRequestException
- 11.x 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
- class \Drupal\Core\Form\Exception\BrokenPostRequestException extends \Symfony\Component\HttpKernel\Exception\BadRequestHttpException
Expanded class hierarchy of BrokenPostRequestException
4 files declare their use of BrokenPostRequestException
- FormAjaxSubscriber.php in core/
lib/ Drupal/ Core/ Form/ EventSubscriber/ FormAjaxSubscriber.php - FormAjaxSubscriberTest.php in core/
tests/ Drupal/ Tests/ Core/ Form/ EventSubscriber/ FormAjaxSubscriberTest.php - FormBuilder.php in core/
lib/ Drupal/ Core/ Form/ FormBuilder.php - FormBuilderTest.php in core/
tests/ Drupal/ Tests/ Core/ Form/ FormBuilderTest.php - Contains \Drupal\Tests\Core\Form\FormBuilderTest.
File
-
core/
lib/ Drupal/ Core/ Form/ Exception/ BrokenPostRequestException.php, line 10
Namespace
Drupal\Core\Form\ExceptionView 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 = '', \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
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
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. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.