Files
conservatorio-tomadini/libraries/vendor/web-auth/metadata-service/src/Exception/ExpiredCertificateException.php
2024-12-17 17:34:10 +01:00

19 lines
398 B
PHP

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