Skip to Content

TryCatch

TryCatch operation implements try-catch-finally control statement supported by many programming languages. TryCatch operation has only one parameter Title that is used to name/comment the TryCatch operation. It contains three inline scenarios: Try, Catch, Finally. The Try inline scenario executed first. If any error occurs during its execution the Catch inline scenario is executed with two parameters: ${errorMessage} and ${errorStackTrace}. You can skip catching the error and executing the Catch scenario by clicking on the Catch tree node and checking Skip catching. After trying to execute the Try scenario and the Catch scenario (when it is not skipped), the Finally inline scenario is executed. To add an operation to any of the thre inline scenarios, right-click on its tree node and click Append Operation. You can drag-and-drop operations inside the inline scenarios and from/to outside them.

Last updated on