Is it possible to throw an exception in a Logic App?
Specifically, I'm trying to throw an exception inside of a scope. Then in the run after of the scope I'd check if it failed and inspect it for errors. I tried using a terminate inside of a scope, but that terminates the entire logic app run.
int('__ERROR__')
int('__ERROR__') ## this will cause the enclosing scope to fail ## the string __ERROR__ cannot be cast to integer