1 2 3 4 5 6 7 8 9 10
<?phpnamespace PragmaRX\Google2FA\Exceptions;use Exception;class SecretKeyTooShortException extends Exception{ protected $message = 'Secret key is too short. Must be at least 16 base32 characters';}