using MTSC.Common.Http; using MTSC.Common.Http.RoutingModules; using System.Threading.Tasks; namespace MTSC.UnitTests.RoutingModules { public class ExceptionThrowingModule : HttpRouteBase { public override Task HandleRequest(HttpRequestContext request) { throw new System.NotImplementedException(); } } }