Parse Error. Invalid JSON was received by the server. An error occurred on the server while parsing the JSON text.
| 86 | |
| 87 | |
| 88 | class JSONRPCParseError(JSONRPCError): |
| 89 | |
| 90 | """ Parse Error. |
| 91 | |
| 92 | Invalid JSON was received by the server. |
| 93 | An error occurred on the server while parsing the JSON text. |
| 94 | |
| 95 | """ |
| 96 | |
| 97 | CODE = -32700 |
| 98 | MESSAGE = "Parse error" |
| 99 | |
| 100 | |
| 101 | class JSONRPCInvalidRequest(JSONRPCError): |
no outgoing calls