mirror of
https://gitlab.com/izyim/prototypes/ddd-example.git
synced 2026-08-19 20:44:07 +00:00
11 lines
237 B
PHP
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');
|
|
}
|
|
} |