diff options
author | RobThree <rob@devcorner.nl> | 2015-03-19 15:05:51 +0100 |
---|---|---|
committer | RobThree <rob@devcorner.nl> | 2015-03-19 15:05:51 +0100 |
commit | 553b725ab7936454b14a42566a8ed45114ceac86 (patch) | |
tree | d750dca76208344e08a4dd108905073ab0f5096b /lib/TwoFactorAuthException.php | |
parent | c16fbf782a578a6f802e0261be6e77968866ac98 (diff) | |
download | TwoFactorAuth-553b725ab7936454b14a42566a8ed45114ceac86.zip TwoFactorAuth-553b725ab7936454b14a42566a8ed45114ceac86.tar.gz TwoFactorAuth-553b725ab7936454b14a42566a8ed45114ceac86.tar.bz2 |
* Move stuff around
Diffstat (limited to 'lib/TwoFactorAuthException.php')
-rw-r--r-- | lib/TwoFactorAuthException.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/TwoFactorAuthException.php b/lib/TwoFactorAuthException.php new file mode 100644 index 0000000..9de9d3a --- /dev/null +++ b/lib/TwoFactorAuthException.php @@ -0,0 +1,11 @@ +<?php + +namespace RobThree\TwoFactorAuth; + +class TwoFactorAuthException extends \Exception +{ + function __construct($message = "", $code = 0, $exception = null) + { + parent::__construct($message, $code, $exception); + } +}
\ No newline at end of file |