Files
liceo-ariosto/libraries/vendor/web-auth/webauthn-lib/src/Exception/AuthenticatorResponseVerificationException.php
2025-06-17 11:53:18 +02:00

16 lines
309 B
PHP

<?php
declare(strict_types=1);
namespace Webauthn\Exception;
use Throwable;
final class AuthenticatorResponseVerificationException extends WebauthnException
{
public static function create(string $message, ?Throwable $previous = null): self
{
return new self($message, $previous);
}
}