I have an activity that throws an exception after 7 days, which then starts a new activity. Let's say after 2 days I know this activity will be unsuccessful so I want to manually throw the exception so the flow moves on to the next activity. Is there a way to manually throw the exception? I know you can update workflow variables... but can u manually throw an exception from the console? 

  • No labels

2 Comments

  1. You don't actually need to throw the exception manually (which I don't think you can do that)

    You can refer to the diagram below. I've not tested it, but it should give you an idea on how to do it :)

    1. Ah yes. Good idea. So I can just go into the console and set the workflow variable 'status' to false and then click 'complete' for the current activity and then the flow should move on to Activity 2. This should work.Thanks!