Home
last modified time | relevance | path

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

/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/error_utils/src/
H A Dability_runtime_error_util.cpp186 int32_t externalErrCode = ERROR_CODE_MAP.at(errCode); in CreateErrorByInternalErrCode() local
187 return CreateJsError(env, externalErrCode, ERROR_MSG_MAP.at(externalErrCode)); in CreateErrorByInternalErrCode()
/ohos5.0/foundation/ability/ability_runtime/frameworks/js/napi/quick_fix/
H A Djs_quick_fix_manager.cpp63 auto externalErrCode = AAFwk::QuickFixErrorUtil::GetErrorCode(errCode); in Throw() local
65 napi_value error = CreateJsError(env, externalErrCode, errMsg); in Throw()
71 auto externalErrCode = AAFwk::QuickFixErrorUtil::GetErrorCode(errCode); in CreateJsErrorByErrorCode() local
73 return CreateJsError(env, externalErrCode, errMsg); in CreateJsErrorByErrorCode()
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/quick_fix/src/
H A Dquick_fix_error_utils.cpp97 auto externalErrCode = GetErrorCode(errCode); in GetErrorMessage() local
98 auto iter = EXTERNAL_ERR_MSG_MAP.find(externalErrCode); in GetErrorMessage()