Example #1
0
 public virtual void ExceptionCaught(Exception ex)
 {
     if (this.Executor == null || this.Executor.InLoop)
     {
         pipeline.ExceptionCaught(ex);
     }
     else
     {
         this.Executor.Execute(c => { ((AbstractHandlerContext)c).SafeExceptionCaught(ex); }, this);
     }
 }
Example #2
0
 public virtual void ExceptionCaught(Exception ex)
 {
     pipeline.ExceptionCaught(ex);
 }