public function LengthRequiredHttpException::__construct in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/Exception/LengthRequiredHttpException.php \Symfony\Component\HttpKernel\Exception\LengthRequiredHttpException::__construct()
Constructor.
Parameters
string $message The internal exception message:
\Exception $previous The previous exception:
int $code The internal exception code:
Overrides HttpException::__construct
File
- vendor/
symfony/ http-kernel/ Exception/ LengthRequiredHttpException.php, line 28
Class
- LengthRequiredHttpException
- LengthRequiredHttpException.
Namespace
Symfony\Component\HttpKernel\ExceptionCode
public function __construct($message = null, \Exception $previous = null, $code = 0) {
parent::__construct(411, $message, $previous, array(), $code);
}