展示品をご参照ください。 開発者は基本的な Blue Prism プロセス テンプレートを使用しています このメイン ページの例外の処理方法のどこが間違っているのでしょうか。」
正解:C
* Exception Handling Best Practices: * Proper exception handling involves not only recovering from an error but also ensuring the system is ready for subsequent operations. * This typically includes resetting the application or any global data to a known good state. * Issue in the Main Page: * In the provided diagram, the flow directly connects the Recover stage to the Resume stage without any intermediate logic. * This is problematic because the system might be left in an inconsistent state after an error. * Required Logic: * Implement logic between the Recover and Resume stages to reset the application or any relevant data. * This ensures that after handling an exception, the system is in a known good state and can continue processing new items reliably. References: * Blue Prism documentation on best practices for exception handling and process design.