12 lines
170 B
PHP
12 lines
170 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace RobThree\Auth\Providers\Rng;
|
|
|
|
use RobThree\Auth\TwoFactorAuthException;
|
|
|
|
class RNGException extends TwoFactorAuthException
|
|
{
|
|
}
|