Pause debug only on un-handled exception?

Hi @ChBain, To break UiPath Debug Mode only on unhandled exceptions like UI selector failures, or missing files, but not on managed exceptions in Try-Catch blocks, you can go to Debug Settings in UiPath Studio, enable Break on Unhandled Exceptions, and disable Break on Handled Exceptions (Try-Catch). Debugging will stop only for severe system issues, not managed exceptions. For greater control, apply Conditional Breakpoints to break on specific errors like SelectorNotFoundException. This approach minimizes interruptions and allows for efficient debugging

1 Like