Enum JsonRpc.ErrorCode
- Namespace
- Godot
- Assembly
- GodotSharp.dll
public enum JsonRpc.ErrorCode : long
Fields
InternalError = -32603
An internal error occurred while processing the request. Not used by the built-in JSONRPC.
InvalidParams = -32602
A method call was requested but the given method parameters are not valid. Not used by the built-in JSONRPC.
InvalidRequest = -32600
A method call was requested but the request's format is not valid.
MethodNotFound = -32601
A method call was requested but no function of that name existed in the JSONRPC subclass.
ParseError = -32700
The request could not be parsed as it was not valid by JSON standard (Parse(string, bool) failed).