pelican-panel-mirror/app/Exceptions/Service/User/TwoFactorAuthenticationTokenInvalid.php
2024-06-05 21:49:09 -04:00

17 lines
382 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.');
}
}