namespace DigitalData.Core.Exceptions.Middleware; public class GlobalExceptionHandlerOptions { private readonly Dictionary _registeredMappings = new(); public GlobalExceptionHandlerOptions Add(HttpExceptionMapping mapping) { _registeredMappings[mapping.ExceptionType] = mapping; return this; } }