Class JsonRpcProtocolException
Exception thrown on JSON-RPC protocol errors.
Namespace: XploRe.Net.JsonRpc
Assembly: XploRe.Net.JsonRpc.dll
Syntax
public class JsonRpcProtocolException : JsonRpcException
Constructors
Name | Description |
---|---|
JsonRpcProtocolException() | Initialises a new JsonRpcProtocolException instance with the default error message. |
JsonRpcProtocolException(Exception) | Initialises a new JsonRpcProtocolException instance with the default error message and a reference to the inner exception that is the cause of this exception. |
JsonRpcProtocolException(String) | Initialises a new JsonRpcProtocolException instance with a specified error message. |
JsonRpcProtocolException(String, Exception) | Initialises a new JsonRpcProtocolException instance with a specified error message and a reference to the inner exception that is the cause of this exception. |
JsonRpcProtocolException(String, JsonRpcId) | Initialises a new JsonRpcProtocolException instance with a specified error message and the ID of the related JSON-RPC message. |
JsonRpcProtocolException(String, JsonRpcId, Exception) | Initialises a new JsonRpcProtocolException instance with a specified error message, the ID of the related JSON-RPC message and a reference to the inner exception that is the cause of this exception. |
JsonRpcProtocolException(JsonRpcId) | Initialises a new JsonRpcProtocolException instance with the default error message and the ID of the related JSON-RPC message. |
JsonRpcProtocolException(JsonRpcId, Exception) | Initialises a new JsonRpcProtocolException instance with the default error message, the ID of the related JSON-RPC message and a reference to the inner exception that is the cause of this exception. |