Error alert when text parser has no output

I’d like to know when my text parser doesn’t produce an output. Currently with no output the scenario completes successfully. I don’t call that a complete execution. So, how can I insert some sort of error handling?

My first attempt is to add a router and filter a route that will check for i = 0. If it’s greater than 0, normal execution can continue. Assuming this is correct, I don’t know what to do next. How do I get it to alert me something was wrong? Is there some sort of error flag I can generate?

Hey Scott,

you can put any module there and just configure it wrong so it will always produce an error when it runs. (For example an HTTP call module with wrong URL)

Thanks, will give it a whirl.