Merged PR 70: BUG527:エラーの共通処理追加

各の内容を対応しました。
1.エラーの共通処理追加
2.各アクションのtry..catch中のエラー関連処理の対応
3.BUG527,521,522,514,504修正

Related work items: #504, #514, #521, #522, #525, #527
This commit is contained in:
Shohtetsu Ma
2024-07-31 09:50:18 +00:00
committed by Takuto Yoshida(タクト)
23 changed files with 351 additions and 123 deletions

View File

@@ -678,13 +678,10 @@ export class InsertValueAction implements IAction{
}
return result;
}catch(error:any){
event.record;
event.error=error.message;
console.error(error);
context.errors.handleError(error,actionNode);
result.canNext=true;//次のノードは処理を続ける
return result;
}
}
/**