Hi,
what is the best way to handle exceptions inside ConfigureServices method?
If I use UseDeveloperExceptionPage I can see the exception details, but if I use UseExceptionHandler the correct handler (action) is not invoked and the generic error page is shown. Exception handler works fine on all other exceptions (inside controllers).
Thanks