We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b49745 commit fb0ce25Copy full SHA for fb0ce25
lib/lsp-server/src/msg.rs
@@ -135,6 +135,14 @@ pub enum ErrorCode {
135
///
136
/// @since 3.17.0
137
ServerCancelled = -32802,
138
+
139
+ /// A request failed but it was syntactically correct, e.g the
140
+ /// method name was known and the parameters were valid. The error
141
+ /// message should contain human readable information about why
142
+ /// the request failed.
143
+ ///
144
+ /// @since 3.17.0
145
+ RequestFailed = -32803,
146
}
147
148
#[derive(Debug, Serialize, Deserialize, Clone)]
0 commit comments