Esempio n. 1
0
 protected override void ExceptionCaught(IChannelHandlerContext ctx, ExceptionEvent e)
 {
     throw e.Exception;
 }
Esempio n. 2
0
 /// <summary>
 /// An exception have been caught during processing.
 /// </summary>
 /// <param name="ctx">Channel context</param>
 /// <param name="e">Exception information</param>
 protected abstract void ExceptionCaught(IChannelHandlerContext ctx, ExceptionEvent e);
Esempio n. 3
0
 /// <summary>
 /// An exception have been caught during processing.
 /// </summary>
 /// <param name="ctx">Channel context</param>
 /// <param name="e">Exception information</param>
 protected override void ExceptionCaught(IChannelHandlerContext ctx, ExceptionEvent e)
 {
     UnhandledException(this, new UnhandledExceptionEventArgs(this, e.Exception));
 }