catchAdmin/extend/catcher/exceptions/PermissionForbiddenException.php

10 lines
174 B
PHP
Raw Normal View History

2019-12-12 18:52:11 +08:00
<?php
2019-12-12 18:54:07 +08:00
namespace catcher\exceptions;
class PermissionForbiddenException extends \Exception
{
protected $code = 10005;
protected $message = 'permission forbidden';
}