forked from Astn/JSON-RPC.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsonResponseErrorObject.cs
More file actions
51 lines (47 loc) · 2.34 KB
/
JsonResponseErrorObject.cs
File metadata and controls
51 lines (47 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
namespace AustinHarris.JsonRpc
{
/// <summary>
/// 5.1 Error object
///
/// When a rpc call encounters an error, the Response Object MUST contain the error member with a value that is a Object with the following members:
/// codeA Number that indicates the error type that occurred.
/// This MUST be an integer.messageA String providing a short description of the error.
/// The message SHOULD be limited to a concise single sentence.dataA Primitive or Structured value that contains additional information about the error.
/// This may be omitted.
/// The value of this member is defined by the Server (e.g. detailed error information, nested errors etc.).
/// The error codes from and including -32768 to -32000 are reserved for pre-defined errors. Any code within this range, but not defined explicitly below is reserved for future use. The error codes are nearly the same as those suggested for XML-RPC at the following url: http://xmlrpc-epi.sourceforge.net/specs/rfc.fault_codes.php
///
/// code message meaning
///
/// -32700 Parse error Invalid JSON was received by the server. An error occurred on the server while parsing the JSON text.
/// -32600 Invalid Request The JSON sent is not a valid Request object.
/// -32601 Method not found The method does not exist / is not available.
/// -32602 Invalid params Invalid method parameter(s).
/// -32603 Internal error Internal JSON-RPC error.
/// -32000 to -32099 Server error Reserved for implementation-defined server-errors.
///
/// The remainder of the space is available for application defined errors.
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class JsonRpcException : System.ApplicationException
{
[JsonProperty]
public int code { get; set; }
[JsonProperty]
public string message { get; set; }
[JsonProperty]
public object data { get; set; }
public JsonRpcException(int code, string message, object data)
{
this.code = code;
this.message = message;
this.data = data;
}
}
}