Bristol SU Support Package
IncorrectLogin.php
Go to the documentation of this file.
1 <?php
2 
4 
6 use Throwable;
7 
8 class IncorrectLogin extends HttpException
9 {
10 
11  public function __construct(string $message = null, \Throwable $previous = null, array $headers = [], ?int $code = 0)
12  {
13  parent::__construct(403, $message, $previous, $headers, $code);
14  }
15 
16 }
__construct(string $message=null, \Throwable $previous=null, array $headers=[], ?int $code=0)