public function GoneHttpException::__construct in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/Exception/GoneHttpException.php \Symfony\Component\HttpKernel\Exception\GoneHttpException::__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/ GoneHttpException.php, line 28
Class
- GoneHttpException
- GoneHttpException.
Namespace
Symfony\Component\HttpKernel\ExceptionCode
public function __construct($message = null, \Exception $previous = null, $code = 0) {
parent::__construct(410, $message, $previous, array(), $code);
}