Example #1
0
 protected void RaiseDispatchException(DispatchExceptionHandler handler, IQHsm hsm, Exception ex, QState state, IQEvent ev)
 {
     if (handler != null)
     {
         handler(ex, hsm, state, ev);
     }
 }
 protected void RaiseDispatchException(DispatchExceptionHandler handler, IQHsm hsm, Exception ex, MethodInfo stateMethod, IQEvent ev)
 {
     if (handler != null)
     {
         handler (ex, hsm, stateMethod, ev);
     }
 }