Files
slovnik30/app/model/Exception/Runtime/AuthenticationException.php
2022-01-13 18:41:03 +01:00

11 lines
229 B
PHP

<?php declare(strict_types = 1);
namespace App\Model\Exception\Runtime;
use Nette\Security\AuthenticationException as NetteAuthenticationException;
final class AuthenticationException extends NetteAuthenticationException
{
}