blob: dd4e640b6adf004f0284cf90426602c703d57936 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
namespace PragmaRX\Google2FA\Exceptions;
use Exception;
class IncompatibleWithGoogleAuthenticatorException extends Exception
{
protected $message = 'This secret key is not compatible with Google Authenticator.';
}
|