Searched refs:ErrorCodeToMsg (Results 1 – 6 of 6) sorted by relevance
23 static const std::unordered_map<int32_t, std::string> ErrorCodeToMsg { variable39 auto iter = ErrorCodeToMsg.find(errCode); in NapiThrow()40 std::string errMsg = iter != ErrorCodeToMsg.end() ? iter->second : ""; in NapiThrow()
24 static const std::map<Download::ExceptionErrorCode, std::string> ErrorCodeToMsg { variable588 auto iter = ErrorCodeToMsg.find(errorCode); in CreateBusinessError()589 std::string strMsg = (iter != ErrorCodeToMsg.end() ? iter->second : "") + " "+ errorMessage; in CreateBusinessError()601 … auto iter = ErrorCodeToMsg.find(static_cast<Download::ExceptionErrorCode>(vmem.responseCode)); in GetMessage()602 if (iter != ErrorCodeToMsg.end()) { in GetMessage()
41 static const std::map<ExceptionErrorCode, std::string> ErrorCodeToMsg {
237 auto iter = ErrorCodeToMsg.find(errorCode); in CreateBusinessError()238 std::string strMsg = (iter != ErrorCodeToMsg.end() ? iter->second : "") + " "+ errorMessage; in CreateBusinessError()
54 static const std::unordered_map<int32_t, std::string> ErrorCodeToMsg { variable298 auto iter = ErrorCodeToMsg.find(errorCode); in GetCallbackErrorValue()299 std::string errMsg = iter != ErrorCodeToMsg.end() ? iter->second : ""; in GetCallbackErrorValue()2987 auto iter = ErrorCodeToMsg.find(errCode); in NapiThrow()2988 std::string errMsg = iter != ErrorCodeToMsg.end() ? iter->second : ""; in NapiThrow()
50 static const std::unordered_map<int32_t, std::string> ErrorCodeToMsg { variable185 auto iter = ErrorCodeToMsg.find(errCode); in FindErrMsg()186 std::string errMsg = iter != ErrorCodeToMsg.end() ? iter->second : ""; in FindErrMsg()