UiPath Automation Developer Professional v1 — Question 146
A developer implemented a process using the REFramework and an **Orchestrator** queue. The "OrchestratorQueueFolder" was defined in the "Config.xlsx" file, but the folder does not exist in Orchestrator. What is the behavior at runtime?
Answer options
- A. A warning message stating that the queue folder is missing is logged, and then the process continues.
- B. The process throws an exception in the “Get Transaction Data” state because the queue folder is not found, and then the process is stopped.
- C. A warning message stating that the queue folder is missing is logged, and then the process is stopped.
- D. The process throws an exception in the “Initialization” state because the queue folder is not found, and then the process is stopped.
Correct answer: B
Explanation
The correct answer is B because the REFramework is designed to throw an exception when the required queue folder is not found during the 'Get Transaction Data' state, resulting in the termination of the process. Options A and C incorrectly suggest that the process continues or stops without throwing an exception, while option D inaccurately states that the exception occurs during the 'Initialization' state instead of 'Get Transaction Data'.