Appian Community and Appian Academy are being upgraded. As a part of the upgrade, Appian Community is currently in read-only mode, and user registration is disabled until August 3. We apologize for any inconvenience this may cause, but a more secure, stable, and performant Community experience is coming soon!

The new Appian Community launches August 3, followed by Appian Academy on August 7. During the migration, Appian Community Edition, Appian Academy, Documentation, Certifications, Instructor-led Customer Training, Partner Sales Training & Accreditation, and Forum (for Appian Partners and Customers only) will remain available.

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