dotnet-core
-
Handling Exceptions in ASP.NET Core: A Guide to app.UseExceptionHandler

Exception handling is an essential part of building robust and reliable applications. ASP.NET Core provides developers with various approaches to handle exceptions, each with its own advantages and use cases. In this blog, we discussed how to use the app.UseExceptionHandler middleware, global exception handling, and exception filters to handle exceptions in ASP.NET Core. We also… Continue reading
-
Custom Error Responses in a .NET Core Web API with RFC Specification

Custom error responses in a .NET Core Web API provide better information to users and developers, making the application more efficient and user-friendly. Continue reading
