diff options
| -rw-r--r-- | API/Controllers/ErrorController.cs | 4 | ||||
| -rw-r--r-- | API/Startup.cs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/API/Controllers/ErrorController.cs b/API/Controllers/ErrorController.cs index 4c5d9ef..6757804 100644 --- a/API/Controllers/ErrorController.cs +++ b/API/Controllers/ErrorController.cs @@ -2,10 +2,10 @@ using System; namespace API.Controllers { + [ApiController] public class ErrorController { - //FIXME: SHOULD NOT BE VOID - public void Error(Exception exception) + public HttpStatusCode Error(Exception exception) { } diff --git a/API/Startup.cs b/API/Startup.cs index dbe8fdd..399feca 100644 --- a/API/Startup.cs +++ b/API/Startup.cs @@ -63,7 +63,7 @@ namespace API }
else
{
- app.UseExceptionHandler();
+ app.UseExceptionHandler("/Error");
}
app.UseHttpsRedirection();
|
