Introduce ErrorCodes.UnknownError

Defined in the application defined errors range.
This commit is contained in:
Dale Wijnand 2018-03-14 11:42:32 +00:00
parent 3530349e9a
commit 7baf97d2a6
No known key found for this signature in database
GPG Key ID: 4F256E3D151DF5EF
1 changed files with 1 additions and 0 deletions

View File

@ -42,6 +42,7 @@ object ErrorCodes {
// The remainder of the space is available for application defined errors.
val RequestCancelled = -32800L // Defined by LSP
val UnknownError = -33000L // A generic error, unknown if the user or server is at fault.
// format: on
}