primo commit
This commit is contained in:
18
libraries/vendor/web-auth/metadata-service/src/Exception/CertificateException.php
vendored
Normal file
18
libraries/vendor/web-auth/metadata-service/src/Exception/CertificateException.php
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Webauthn\MetadataService\Exception;
|
||||
|
||||
use Throwable;
|
||||
|
||||
class CertificateException extends MetadataServiceException
|
||||
{
|
||||
public function __construct(
|
||||
public readonly string $certificate,
|
||||
string $message,
|
||||
?Throwable $previous = null
|
||||
) {
|
||||
parent::__construct($message, $previous);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user