module LanguageServer::Protocol::Constant::ErrorCodes
Constants
- CONTENT_MODIFIED
The server detected that the content of a document got modified outside normal conditions. A server should NOT send this error code if it detects a content change in it unprocessed messages. The result even computed on an older state might still be useful for the client.
If a client decides that a result is not of any use anymore the client should cancel the request.
- INTERNAL_ERROR
- INVALID_PARAMS
- INVALID_REQUEST
- JSONRPC_RESERVED_ERROR_RANGE_END
This is the end range of JSON-RPC reserved error codes. It doesn’t denote a real error code.
- JSONRPC_RESERVED_ERROR_RANGE_START
This is the start range of JSON-RPC reserved error codes. It doesn’t denote a real error code. No LSP error codes should be defined between the start and end range. For backwards compatibility the ‘ServerNotInitialized` and the `UnknownErrorCode` are left in the range.
- LSP_RESERVED_ERROR_RANGE_END
This is the end range of LSP reserved error codes. It doesn’t denote a real error code.
- LSP_RESERVED_ERROR_RANGE_START
This is the start range of LSP reserved error codes. It doesn’t denote a real error code.
- METHOD_NOT_FOUND
- PARSE_ERROR
- REQUEST_CANCELLED
The client has canceled a request and a server as detected the cancel.
- REQUEST_FAILED
A request failed but it was syntactically correct, e.g the method name was known and the parameters were valid. The error message should contain human readable information about why the request failed.
- SERVER_CANCELLED
The server cancelled the request. This error code should only be used for requests that explicitly support being server cancellable.
- SERVER_ERROR_END
- SERVER_ERROR_START
- SERVER_NOT_INITIALIZED
Error code indicating that a server received a notification or request before the server has received the ‘initialize` request.
- UNKNOWN_ERROR_CODE