public override async Task InvokeAsync(AspectContext context, AsyncAspectDelegate next) { try { await next(context); } catch (Exception ex) { context.SetException(ex); await interceptor.InvokeAsync(context, next); } }