aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Controllers/ErrorController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Web/Controllers/ErrorController.cs')
-rw-r--r--src/DevHive.Web/Controllers/ErrorController.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/DevHive.Web/Controllers/ErrorController.cs b/src/DevHive.Web/Controllers/ErrorController.cs
new file mode 100644
index 0000000..560b0da
--- /dev/null
+++ b/src/DevHive.Web/Controllers/ErrorController.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Net;
+using System.Net.Http;
+using Microsoft.AspNetCore.Mvc;
+
+namespace DevHive.Web.Controllers
+{
+ [ApiController]
+ [Route("/api/[controller]")]
+ public class ErrorController
+ {
+ [HttpGet]
+ public HttpStatusCode HttpError(HttpRequestException exception)
+ {
+ Console.WriteLine("WE HERE, BOIIIIIII");
+
+ return HttpStatusCode.OK;
+ }
+ }
+}