2 Star 0 Fork 0

向林 / kiri-rpc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
InvalidRpcParamsException.php 411 Bytes
一键复制 编辑 原始数据 按行查看 历史
向林 提交于 2022-01-19 17:27 . Revert "改名"
<?php
namespace Kiri\Rpc;
use JetBrains\PhpStorm\Pure;
use Throwable;
class InvalidRpcParamsException extends \Exception
{
/**
* @param string $message
* @param int $code
* @param Throwable|null $previous
*/
#[Pure] public function __construct(string $message = "", int $code = 0, Throwable $previous = null)
{
parent::__construct($message, -32602, $previous);
}
}
PHP
1
https://gitee.com/dreamwithouttrace/kiri-rpc.git
git@gitee.com:dreamwithouttrace/kiri-rpc.git
dreamwithouttrace
kiri-rpc
kiri-rpc
master

搜索帮助