Files
ddd-example/src/Common/Domain/Exceptions/UnauthorizedUserException.php
T
2022-09-25 03:46:14 +08:00

11 lines
237 B
PHP

<?php
namespace Src\Common\Domain\Exceptions;
final class UnauthorizedUserException extends \Exception
{
public function __construct()
{
parent::__construct('The user is not authorized to access this resource');
}
}