phpmyadmin/libraries/classes/WebAuthn/WebAuthnException.php
Maurício Meneghini Fauth f143d2a709
Add support for Web Authentication API
Adds a two factor authentication plugin that supports FIDO2/WebAuthn
security keys.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-01-16 18:20:05 -03:00

12 lines
127 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\WebAuthn;
use Exception;
class WebAuthnException extends Exception
{
}