← Back
Editing: 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); } }
Save File
Cancel