Terminal activities should throw a specific type of error, not System.Exception

It’s important to be able to distinguish between terminal exceptions and other exceptions. But the terminal activities simply throw System.Exception when they fail.

Please add an exception class of TerminalException and make the terminal activities throw this type of error when they fail.

We were able to create our own custom exception class, but I don’t see any way to make the terminal activities throw that type of error. We still would have to use extra try/catches, throws, etc.

Thanks for the feedback.

1 Like