1 //===-- MCPError.cpp ------------------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "MCPError.h" 10 #include "llvm/Support/Error.h" 11 #include "llvm/Support/raw_ostream.h" 12 #include <system_error> 13 14 namespace lldb_private::mcp { 15 16 char MCPError::ID; 17 char UnsupportedURI::ID; 18 MCPError(std::string message,int64_t error_code)19MCPError::MCPError(std::string message, int64_t error_code) 20 : m_message(message), m_error_code(error_code) {} 21 log(llvm::raw_ostream & OS) const22void MCPError::log(llvm::raw_ostream &OS) const { OS << m_message; } 23 convertToErrorCode() const24std::error_code MCPError::convertToErrorCode() const { 25 return llvm::inconvertibleErrorCode(); 26 } 27 toProtcolError() const28protocol::Error MCPError::toProtcolError() const { 29 protocol::Error error; 30 error.error.code = m_error_code; 31 error.error.message = m_message; 32 return error; 33 } 34 UnsupportedURI(std::string uri)35UnsupportedURI::UnsupportedURI(std::string uri) : m_uri(uri) {} 36 log(llvm::raw_ostream & OS) const37void UnsupportedURI::log(llvm::raw_ostream &OS) const { 38 OS << "unsupported uri: " << m_uri; 39 } 40 convertToErrorCode() const41std::error_code UnsupportedURI::convertToErrorCode() const { 42 return llvm::inconvertibleErrorCode(); 43 } 44 45 } // namespace lldb_private::mcp 46