!179 merge fix_ani_mangling into master

fix ANI mangling

Created-by: wanzixuan330
Commit-by: wanzixuan330
Merged-by: ohci1
Description: ### 相关的Issue
https://gitcode.com/openharmony/arkcompiler_runtime_core/issues/8690
  
### 原因(目的、解决的问题等)


### 描述(做了什么,变更了什么)


### 测试用例(新增、改动、可能影响的功能)
    
    
### L0新增用例自检结果
- [ ] 是,有新增L0用例,且完成自检
- [ ] 否


See merge request: openharmony/customization_config_policy!179
This commit is contained in:
ohci1
2025-12-22 10:04:03 +08:00
+1 -1
View File
@@ -85,7 +85,7 @@ void AniUtils::ThrowAniError(ani_env *env, int32_t code, const std::string &mess
return;
}
ani_method ctor {};
if (ANI_OK != env->Class_FindMethod(cls, "<ctor>", ":V", &ctor)) {
if (ANI_OK != env->Class_FindMethod(cls, "<ctor>", ":", &ctor)) {
HILOG_ERROR(LOG_CORE, "find method BusinessError constructor failed");
return;
}