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