rpc ~master (2019-04-11T21:28:52Z)
Dub
Repo
JsonRpcUserException
rpc
protocol
json
Exception to be used inside rpc handler, to throw user defined json-rpc error.
class
JsonRpcUserException :
RpcException
{
import
vibe
.
data
.
json
;
;
int
code
;
Json
data
;
this
(int code, string msg, T data);
}
Constructors
this
this
(int code, string msg, T data)
Undocumented in source.
Members
Variables
code
int
code
;
Undocumented in source.
data
Json
data
;
Undocumented in source.
Inherited Members
From RpcException
inner
Exception
inner
;
Undocumented in source.
Meta
Source
See Implementation
rpc
protocol
json
aliases
HttpJsonRpcClient
IJsonRpcClient
IJsonRpcServer
JsonRpcRequestHandler
classes
HttpJsonRpcAutoClient
HttpJsonRpcServer
JsonRpcAutoAttributeClient
JsonRpcAutoClient
JsonRpcError
JsonRpcMethodException
JsonRpcRequest
JsonRpcResponse
JsonRpcUserException
RawJsonRpcAutoClient
RawJsonRpcClient
RawJsonRpcServer
TcpJsonRpcAutoClient
TcpJsonRpcClient
TcpJsonRpcServer
functions
jsonRpcMethodHandler
Exception to be used inside rpc handler, to throw user defined json-rpc error.