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