catchAdmin/modules/Permissions/Exceptions/PermissionForbidden.php
2023-01-12 10:42:38 +08:00

14 lines
263 B
PHP

<?php
namespace Modules\Permissions\Exceptions;
use Catch\Enums\Code;
use Catch\Exceptions\CatchException;
class PermissionForbidden extends CatchException
{
protected $message = 'permission forbidden';
protected $code = Code::PERMISSION_FORBIDDEN;
}