Bristol SU Support Package
src
Authorization
Exception
IncorrectLogin.php
Go to the documentation of this file.
1
<?php
2
3
namespace
BristolSU\Support\Authorization\Exception
;
4
5
use
Symfony\Component\HttpKernel\Exception\HttpException
;
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
}
HttpException
BristolSU\Support\Authorization\Exception\IncorrectLogin
Definition:
IncorrectLogin.php:8
BristolSU\Support\Authorization\Exception
Definition:
ActivityDisabled.php:3
BristolSU\Support\Authorization\Exception\IncorrectLogin\__construct
__construct(string $message=null, \Throwable $previous=null, array $headers=[], ?int $code=0)
Definition:
IncorrectLogin.php:11
Throwable
Generated by
1.8.13