diff --git a/src/ReC.API/Middleware/ExceptionHandlingMiddleware.cs b/src/ReC.API/Middleware/ExceptionHandlingMiddleware.cs index db5e5f0..887db5d 100644 --- a/src/ReC.API/Middleware/ExceptionHandlingMiddleware.cs +++ b/src/ReC.API/Middleware/ExceptionHandlingMiddleware.cs @@ -7,13 +7,11 @@ using System.Text.Json; namespace ReC.API.Middleware; -//TODO: Fix and use DigitalData.Core.Exceptions.Middleware /// /// Middleware for handling exceptions globally in the application. /// Captures exceptions thrown during the request pipeline execution, /// logs them, and returns an appropriate HTTP response with a JSON error details. /// -[Obsolete("Use DigitalData.Core.Exceptions.Middleware")] public class ExceptionHandlingMiddleware { private readonly RequestDelegate _next;