neptuo / Framework

Common (shareable) frameworks, features and extensions.
http://www.neptuo.com/project/dev
9 stars 5 forks source link

Add IgnoreExceptionHandler #118

Closed maraf closed 6 years ago

maraf commented 6 years ago

TODO:

maraf commented 6 years ago
public class IgnoreExceptionHandler<T> : IExceptionHandler<IExceptionHandlerContext<T>>
    where T : Exception
{
    public void Handle(IExceptionHandlerContext<T> context)
        => context.IsHandled = true;
}