diff options
Diffstat (limited to 'lib/TwoFactorAuthException.php')
-rw-r--r-- | lib/TwoFactorAuthException.php | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/lib/TwoFactorAuthException.php b/lib/TwoFactorAuthException.php index 2d46d4e..af51b74 100644 --- a/lib/TwoFactorAuthException.php +++ b/lib/TwoFactorAuthException.php @@ -2,10 +2,6 @@ namespace RobThree\Auth; -class TwoFactorAuthException extends \Exception -{ - function __construct($message = "", $code = 0, $exception = null) - { - parent::__construct($message, $code, $exception); - } -}
\ No newline at end of file +use Exception; + +class TwoFactorAuthException extends \Exception {}
\ No newline at end of file |