Files
accounts/common/components/Authentication/Exceptions/AuthenticationException.php

11 lines
161 B
PHP

<?php
declare(strict_types=1);
namespace common\components\Authentication\Exceptions;
use Throwable;
interface AuthenticationException extends Throwable {
}