Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Exceptions/Service/User/TwoFactorAuthenticationTokenInvalid.php
10279 views
1
<?php
2
3
namespace Pterodactyl\Exceptions\Service\User;
4
5
use Pterodactyl\Exceptions\DisplayException;
6
7
class TwoFactorAuthenticationTokenInvalid extends DisplayException
8
{
9
/**
10
* TwoFactorAuthenticationTokenInvalid constructor.
11
*/
12
public function __construct()
13
{
14
parent::__construct('The provided two-factor authentication token was not valid.');
15
}
16
}
17
18