summaryrefslogtreecommitdiff
path: root/script-beta/define/ErrorCodes.lua
diff options
context:
space:
mode:
Diffstat (limited to 'script-beta/define/ErrorCodes.lua')
-rw-r--r--script-beta/define/ErrorCodes.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/script-beta/define/ErrorCodes.lua b/script-beta/define/ErrorCodes.lua
new file mode 100644
index 00000000..befb5630
--- /dev/null
+++ b/script-beta/define/ErrorCodes.lua
@@ -0,0 +1,16 @@
+
+return {
+ -- Defined by JSON RPC
+ ParseError = -32700,
+ InvalidRequest = -32600,
+ MethodNotFound = -32601,
+ InvalidParams = -32602,
+ InternalError = -32603,
+ serverErrorStart = -32099,
+ serverErrorEnd = -32000,
+ ServerNotInitialized = -32002,
+ UnknownErrorCode = -32001,
+
+ -- Defined by the protocol.
+ RequestCancelled = -32800,
+}