Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
JsonRpcError.cs
2{
7 {
14 public JsonRpcError(int ErrorCode, string Message, object? Data)
15 : base(Message)
16 {
17 this.ErrorCode = ErrorCode;
18 this.ErrorData = Data;
19 }
20
24 public int ErrorCode { get; }
25
29 public object? ErrorData { get; }
30 }
31}
Base class for JSON-RPC error responses.
Definition: JsonRpcError.cs:7
JsonRpcError(int ErrorCode, string Message, object? Data)
Base class for JSON-RPC error responses.
Definition: JsonRpcError.cs:14
object? ErrorData
Data associated with the error.
Definition: JsonRpcError.cs:29