mirror of
https://github.com/RobThree/TwoFactorAuth.git
synced 2026-08-17 12:11:40 +00:00
11 lines
221 B
PHP
11 lines
221 B
PHP
<?php
|
|
|
|
namespace RobThree\Auth;
|
|
|
|
class TwoFactorAuthException extends \Exception
|
|
{
|
|
function __construct($message = "", $code = 0, $exception = null)
|
|
{
|
|
parent::__construct($message, $code, $exception);
|
|
}
|
|
} |