mirror of
https://github.com/RobThree/TwoFactorAuth.git
synced 2026-01-17 13:30:43 +00:00
12 lines
126 B
PHP
12 lines
126 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace RobThree\Auth;
|
|
|
|
use Exception;
|
|
|
|
class TwoFactorAuthException extends Exception
|
|
{
|
|
}
|