Articles
Harnessing the Power of Exception Tracking Services for Seamless Error Management
In the world of software development, exceptions are an inevitable part of the process. No matter how meticulously we plan, design, and test our applications, errors and exceptions can occur during runtime. These exceptions can disrupt the application's functionality, impact user experience, and even lead to system failures. This is... Read More
Global Exception Handling in VB.Net Tutorial
A global exception handler is used to catch all unhandled exceptions within a given application. To handle exceptions globally you can use a built in .NET solution, extend a solution or use pre-built solutions. Today we'll focus on a pre-built solution by ClearInsights. Overview ClearInsights logging provides integrated exception handling... Read More
Helpful Guide to Exception Handling in VB.Net
Exception handling is an important part of any programming language. It allows you to anticipate and handle errors that might occur in your code. VB.Net is no different, and in this article we'll show you how to use try...catch blocks to handle exceptions in your VB.Net code. When an exception... Read More
ClearInsights .NET Global Exception Handling
Global exception handling enables an application with a much broader ability to handle all exceptions. This is usually done through custom middleware for ASP.NET core applications or AppDomain unhandled exception event for .NET core console and service applications. ClearInsights logging simplifies the implementation and management of global exception handling while... Read More
The Best Practices for Exception Handling in C#
No matter how efficient your software application runs, one exception due to bad code can crash the application and make it unavailable for even millions of users. That is simply why exception handling is a critical requirement for any code. This article explains the best practices you should follow when... Read More