Commit 9859453d authored by 王源's avatar 王源 🎧

添加自定义rpc异常类

parent 9b306502
<?php
namespace Meibuyu\Micro\Exceptions;
use Throwable;
class RpcException extends \Exception
{
public function __construct($message = "", $code = 511, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment