Your IP : 216.73.216.84


Current Path : /home/helpink/www/libraries/vendor/web-auth/webauthn-lib/src/Exception/
Upload File :
Current File : /home/helpink/www/libraries/vendor/web-auth/webauthn-lib/src/Exception/WebauthnException.php

<?php

declare(strict_types=1);

namespace Webauthn\Exception;

use Exception;
use Throwable;

class WebauthnException extends Exception
{
    public function __construct(string $message, ?Throwable $previous = null)
    {
        parent::__construct($message, 0, $previous);
    }
}