| 1 | <?php |
||
| 7 | class UnauthorizedException extends AbstractException |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * UnauthorizedException constructor |
||
| 11 | * |
||
| 12 | * @param string|null $message |
||
| 13 | * @param int $statusCode |
||
| 14 | * @param \Throwable|null $previous |
||
| 15 | */ |
||
| 16 | 2 | public function __construct(string $message = null, int $statusCode = 401, Throwable $previous = null) |
|
| 20 | } |
||
| 21 |