summaryrefslogtreecommitdiff
path: root/script-beta/define/ErrorCodes.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2020-10-22 14:34:04 +0800
committer最萌小汐 <sumneko@hotmail.com>2020-10-22 14:34:04 +0800
commitbc7233545056f7bcfc2b50ba476099fa191701de (patch)
treef8469e3501a57b81542ec9d20544347569982467 /script-beta/define/ErrorCodes.lua
parent2881d5d769033594dca45d659509fa0de3c746bf (diff)
downloadlua-language-server-bc7233545056f7bcfc2b50ba476099fa191701de.zip
整理代码
Diffstat (limited to 'script-beta/define/ErrorCodes.lua')
-rw-r--r--script-beta/define/ErrorCodes.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/script-beta/define/ErrorCodes.lua b/script-beta/define/ErrorCodes.lua
deleted file mode 100644
index befb5630..00000000
--- a/script-beta/define/ErrorCodes.lua
+++ /dev/null
@@ -1,16 +0,0 @@
-
-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,
-}