webauthn/src/Application/Model/Exceptions/WebauthnCreateException.php

27 lines
635 B
PHP
Raw Normal View History

2022-11-03 13:18:02 +01:00
<?php
/**
2022-11-04 22:45:47 +01:00
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* https://www.d3data.de
2022-11-03 13:18:02 +01:00
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
2022-11-04 22:45:47 +01:00
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
* @link https://www.oxidmodule.com
2022-11-03 13:18:02 +01:00
*/
2022-11-04 22:02:44 +01:00
declare(strict_types=1);
2022-11-03 13:18:02 +01:00
namespace D3\Webauthn\Application\Model\Exceptions;
use D3\Webauthn\Application\Model\WebauthnConf;
class WebauthnCreateException extends WebauthnException
{
public function getRequestType(): string
{
return WebauthnConf::TYPE_CREATE;
}
2022-12-13 22:24:33 +01:00
}