How do you implement a try/catch in Appian RPA no code environment?

How do you implement a try/catch in Appian RPA no code environment?

Thank you.

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to nicolaem159908

    Sure, re-throwing an Exception is a thing. But again, that simply means you're pushing the problem off onto some other part of the code passively, rather than proactively dealing with it. In some cases, such as generic connection handlers, that makes sense. Yet in most cases it's simply a way to punt on a problem that should be dealt with.

    The time / effort to handle an error will be spent at some point, whether it's dealt with immediately via checks or rethrown and dealt with in a few months as a mess of data / processes that need to be cleaned up.

Children