Ensure a created_at value is set on recovery tokens; closes #3163
This commit is contained in:
parent
983a337fd4
commit
8c7d785c9e
4 changed files with 17 additions and 3 deletions
|
@ -6,4 +6,11 @@ use Pterodactyl\Exceptions\DisplayException;
|
|||
|
||||
class TwoFactorAuthenticationTokenInvalid extends DisplayException
|
||||
{
|
||||
/**
|
||||
* TwoFactorAuthenticationTokenInvalid constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct('The provided two-factor authentication token was not valid.');
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue