Class: Solargraph::LanguageServer::Message::MethodNotFound
- Defined in:
- lib/solargraph/language_server/message/method_not_found.rb
Instance Attribute Summary
Attributes inherited from Base
#error, #host, #id, #method, #params, #request, #result
Instance Method Summary collapse
Methods inherited from Base
#initialize, #post_initialize, #send_response, #set_error, #set_result
Constructor Details
This class inherits a constructor from Solargraph::LanguageServer::Message::Base
Instance Method Details
#process ⇒ Object
7 8 9 10 11 12 |
# File 'lib/solargraph/language_server/message/method_not_found.rb', line 7 def process set_error( Solargraph::LanguageServer::ErrorCodes::METHOD_NOT_FOUND, "Method not found: #{request['method']}" ) end |