mirror of
https://github.com/AlexMacocian/MTSC.git
synced 2026-07-16 07:19:32 +00:00
15 lines
371 B
C#
15 lines
371 B
C#
using MTSC.Common.Http;
|
|
using MTSC.Common.Http.RoutingModules;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MTSC.UnitTests.RoutingModules
|
|
{
|
|
public class ExceptionThrowingModule : HttpRouteBase
|
|
{
|
|
public override Task<HttpResponse> HandleRequest(HttpRequestContext request)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
}
|