2017-06-25 20:31:50 +00:00
|
|
|
<?php
|
|
|
|
|
2017-08-31 02:11:14 +00:00
|
|
|
namespace Pterodactyl\Exceptions\Service\User;
|
2017-06-25 20:31:50 +00:00
|
|
|
|
2019-12-23 01:03:44 +00:00
|
|
|
use Pterodactyl\Exceptions\DisplayException;
|
2019-09-06 04:32:57 +00:00
|
|
|
|
2019-12-23 01:03:44 +00:00
|
|
|
class TwoFactorAuthenticationTokenInvalid extends DisplayException
|
2017-06-25 20:31:50 +00:00
|
|
|
{
|
2021-03-21 17:43:01 +00:00
|
|
|
/**
|
|
|
|
* TwoFactorAuthenticationTokenInvalid constructor.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct('The provided two-factor authentication token was not valid.');
|
|
|
|
}
|
2017-06-25 20:31:50 +00:00
|
|
|
}
|