How to Implement Global Exception Handling in ASP.NET Core Application
In this tutorial, we will learn how to implement global exception handling in an ASP.NET Core application. Exception handling is one of the important features of any application, it is considered as a powerful mechanism to handle the runtime errors that may occur during the execution time of the application and without it we can't maintain the normal behavior of the web application. Therefore, we should always make sure to implement exception handling in a proper way. In ASP.NET Core, we should implemen…