Skip to content

Instantly share code, notes, and snippets.

@ankitvijay
Created April 20, 2021 21:39
Embed
What would you like to do?
Register ExceptionHandler and ApplicationExceptionHandler
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
.
.
services.AddSingleton<IExceptionHandler, ExceptionHandler>();
.
.
}
public void Configure(IApplicationBuilder app)
{
app.UseMiddleware<ApplicationExceptionMiddleware>();
.
.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment