mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 21:04:44 +02:00
18 lines
383 B
PHP
18 lines
383 B
PHP
<?php
|
|
|
|
namespace App\Exceptions\Service\User;
|
|
|
|
use App\Exceptions\DisplayException;
|
|
|
|
class TwoFactorAuthenticationTokenInvalid extends DisplayException
|
|
{
|
|
public string $title = 'Invalid 2FA Code';
|
|
|
|
public string $icon = 'tabler-2fa';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct('The provided two-factor authentication token was not valid.');
|
|
}
|
|
}
|