Rename ErrorCodes' UnknownErrorCode to UnknownServerError

Allows for a non-server-specific unknown error code to be defined.
This commit is contained in:
Dale Wijnand 2018-03-14 11:41:58 +00:00
parent 8972287892
commit 3530349e9a
No known key found for this signature in database
GPG Key ID: 4F256E3D151DF5EF
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ object ErrorCodes {
val serverErrorStart = -32099L // from LSP's spec code snippet
val serverErrorEnd = -32000L // from LSP's spec code snippet
val UnknownErrorCode = -32001L // Defined by LSP
val UnknownServerError = -32001L // Defined by LSP
val ServerNotInitialized = -32002L // Defined by LSP