using System.Web.Http.ExceptionHandling; using static Step.Utils.ExceptionManager; namespace Step { public class WebApiUnhandledExceptionHandler : ExceptionHandler { public override void Handle(ExceptionHandlerContext context) { Manage(context.Exception); } } }