Reading the docs for UseExceptionHandler extension method, that adds standard exception handler middleware, I see following description:
UseExceptionHandler(IApplicationBuilder)
Adds a middleware to the pipeline that will catch exceptions, log them, and re-execute the request in an alternate pipeline. The request will not be re-executed if the response has already started.
However I was not able to find in docs what this means exactly. What is an alternate pipeline
?