Handle node exception and continue process execution

Hi,

Is there any way to handle exception and continue process execution? In other words if error occurs i need to go to  different route (route 2 on print screen). It is not possible to query db to check if error will occur or not.

Simplifies process model. In real case there are much more nodes after writing to db.

  Discussion posts and replies are publicly visible

Parents Reply Children
  • One common example of this - suppose you have a process that sends out a survey, where each user receives a task. However, the task deadline is 7 days after the survey is started. A good use for an exception is to trigger the exception after 7 days to skip the task if the user did not complete it. This will ensure the process does not wait indefinitely for the user to complete their task.