mirror of
https://github.com/RobThree/TwoFactorAuth.git
synced 2026-08-18 02:51:47 +00:00
12 lines
172 B
PHP
12 lines
172 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace RobThree\Auth\Providers\Time;
|
|
|
|
use RobThree\Auth\TwoFactorAuthException;
|
|
|
|
class TimeException extends TwoFactorAuthException
|
|
{
|
|
}
|