catchAdmin/extend/catcher/exceptions/PermissionForbiddenException.php
2019-12-22 09:37:52 +08:00

12 lines
218 B
PHP

<?php
namespace catcher\exceptions;
use catcher\Code;
class PermissionForbiddenException extends CatchException
{
protected $code = Code::PERMISSION_FORBIDDEN;
protected $message = 'permission forbidden';
}