aboutsummaryrefslogtreecommitdiff
path: root/API/Controllers/ErrorController.cs
blob: 62daf403345c83ec003571aab9eb295b14052703 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Net;
using Microsoft.AspNetCore.Mvc;

namespace API.Controllers
{
	[ApiController]
	[Route("/api/[controller]")]
	public class ErrorController
	{
		public HttpStatusCode Error(Exception exception)
		{
			return HttpStatusCode.OK;
		}
	}
}