summaryrefslogtreecommitdiffstats
path: root/lib/TwoFactorAuthException.php
diff options
context:
space:
mode:
authorRobThree <rob@devcorner.nl>2017-02-17 12:15:17 +0100
committerRobThree <rob@devcorner.nl>2017-02-17 12:15:17 +0100
commit178c60d94742f26853aeb79443dbb2e5b1d5aaa2 (patch)
tree098e6f37669ae7cf0abcfc079f7e5baeb354ab2c /lib/TwoFactorAuthException.php
parentb3bb9685eaa8317c15715d35f0f86b251c2dc756 (diff)
downloadTwoFactorAuth-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.php10
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