/
home
/
assocoweys
/
fiacat
/
libraries
/
vendor
/
web-auth
/
webauthn-lib
/
src
/
Exception
/
Upload File
HOME
<?php declare(strict_types=1); namespace Webauthn\Exception; use Exception; use Throwable; class WebauthnException extends Exception { public function __construct(string $message, ?Throwable $previous = null) { parent::__construct($message, 0, $previous); } }