catchAdmin/modules/Permissions/Exceptions/PermissionForbidden.php

14 lines
263 B
PHP
Raw Normal View History

2022-12-14 19:25:52 +08:00
<?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;
}