/
home
/
assocoweys
/
sompe
/
libraries
/
vendor
/
web-auth
/
webauthn-lib
/
src
/
Exception
/
Upload File
HOME
<?php declare(strict_types=1); namespace Webauthn\Exception; use Throwable; final class AuthenticationExtensionException extends WebauthnException { public static function create(string $message, ?Throwable $previous = null): self { return new self($message, $previous); } }