Welcome to FlowZap, the App to diagram with Speed, Clarity and Control.

14 Error Handling Workflow

syntax-primitives

This workflow models a try and retry style pattern for handling errors.

Full FlowZap Code

laneA { # Lane A
  n1: circle label:"Start 14 Error Handling"
  n3: rectangle label:"14 Error Handling step 3"
  n5: rectangle label:"14 Error Handling step 5"
  n7: circle label:"End 14 Error Handling"
  n1.handle(bottom) -> laneB.n2.handle(top)
  n3.handle(bottom) -> laneB.n4.handle(top)
  n5.handle(bottom) -> laneB.n6.handle(top)
}

laneB { # Lane B
  n2: rectangle label:"14 Error Handling step 2"
  n4: rectangle label:"14 Error Handling step 4"
  n6: rectangle label:"14 Error Handling step 6"
  n2.handle(right) -> laneA.n3.handle(left)
  n4.handle(right) -> laneA.n5.handle(left)
  n6.handle(right) -> laneA.n7.handle(left)
}

}

Related templates