15 lines
266 B
PHP
15 lines
266 B
PHP
<?php
|
|
|
|
namespace App\Exception;
|
|
|
|
use App\Constants\ReturnCode;
|
|
use Hyperf\Server\Exception\ServerException;
|
|
|
|
class ErrException extends ServerException
|
|
{
|
|
/**
|
|
* 重写抛出错误的状态码
|
|
* @var int
|
|
*/
|
|
protected $code = ReturnCode::ERROR;
|
|
} |