Files
TwoFactorAuth/RobThree/TwoFactorAuth/TwoFactorAuthException.php
T
RobThree 8428b2d25a * Added isCryptographicallySecure to IRNGProvider interface
* Exceptions thrown by TwoFactorAuth are now of type TwoFactorAuthException
* createSecret now has extra argument $requirecryptosecure which is used to force cryptographically secure secrets
* HashRNGProvider now returns string instead of "byte array"
* HashRNGProvider is now initialized with two random values (for the heck of it...)
2015-03-17 12:19:38 +01:00

11 lines
230 B
PHP

<?php
namespace RobThree\TwoFactorAuth;
class TwoFactorAuthException extends \Exception
{
function __construct($message = "", $code = 0, $exception = null)
{
parent::__construct($message, $code, $exception);
}
}