mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-28 15:46:33 +00:00
13 lines
402 B
Nim
13 lines
402 B
Nim
type
|
|
JsonRpcError* = object of CatchableError
|
|
## Base type of all nim-json-rpc errors
|
|
|
|
ErrorResponse* = object of JsonRpcError
|
|
## raised when the server responded with an error
|
|
|
|
InvalidResponse* = object of JsonRpcError
|
|
## raised when the server response violates the JSON-RPC protocol
|
|
|
|
RpcBindError* = object of JsonRpcError
|
|
RpcAddressUnresolvableError* = object of JsonRpcError
|