primo commit
This commit is contained in:
18
libraries/vendor/web-auth/metadata-service/src/Exception/ExpiredCertificateException.php
vendored
Normal file
18
libraries/vendor/web-auth/metadata-service/src/Exception/ExpiredCertificateException.php
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user