mirror of
https://gitee.com/ctexthuang/hyperf-micro-svc.git
synced 2026-02-08 10:20:16 +08:00
14 lines
228 B
PHP
14 lines
228 B
PHP
<?php
|
|
|
|
namespace App\Exception;
|
|
|
|
use App\Constants\ResultCode;
|
|
use Hyperf\Server\Exception\ServerException;
|
|
|
|
class ErrException extends ServerException
|
|
{
|
|
/**
|
|
* @var int
|
|
*/
|
|
protected $code = ResultCode::ERROR;
|
|
} |