diff options
author | RobThree <rob@devcorner.nl> | 2017-02-17 12:15:17 +0100 |
---|---|---|
committer | RobThree <rob@devcorner.nl> | 2017-02-17 12:15:17 +0100 |
commit | 178c60d94742f26853aeb79443dbb2e5b1d5aaa2 (patch) | |
tree | 098e6f37669ae7cf0abcfc079f7e5baeb354ab2c /lib/TwoFactorAuthException.php | |
parent | b3bb9685eaa8317c15715d35f0f86b251c2dc756 (diff) | |
download | TwoFactorAuth-178c60d94742f26853aeb79443dbb2e5b1d5aaa2.zip TwoFactorAuth-178c60d94742f26853aeb79443dbb2e5b1d5aaa2.tar.gz TwoFactorAuth-178c60d94742f26853aeb79443dbb2e5b1d5aaa2.tar.bz2 |
* Redo #15 which somehow didn't merge...
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 |