Home
last modified time | relevance | path

Searched refs:ERROR_MSG_MAP (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/error_utils/src/
H A Dability_runtime_error_util.cpp31 const std::map<int32_t, std::string> ERROR_MSG_MAP = { variable
159 eMes = ERROR_MSG_MAP.at(errCode); in Throw()
187 return CreateJsError(env, externalErrCode, ERROR_MSG_MAP.at(externalErrCode)); in CreateErrorByInternalErrCode()
192 auto iter = ERROR_MSG_MAP.find(errCode); in GetErrMessage()
193 std::string errMsg = (iter != ERROR_MSG_MAP.end()) ? iter->second : ""; in GetErrMessage()