Ejemplo n.º 1
0
 public bool Run(Exception exception, IFlow flow)
 {
     if (exception is T)
     {
         _exception.Refresh();
         _catchBody.Run(flow);
         return(true);
     }
     else
     {
         return(false);
     }
 }
Ejemplo n.º 2
0
 public void RunStep(IFlow flow)
 {
     _value.Refresh();
 }