mirror of
https://github.com/RobThree/TwoFactorAuth.git
synced 2026-08-17 09:30:56 +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
|
|
{
|
|
}
|