devxlogo

How to Filter an Exception with a Condition in C# 6.0

How to Filter an Exception with a Condition in C# 6.0

There are cases in which we want to ignore errors even if they are genuine. For example, there could be a feed running on all days except for some fixed holidays. You could work with the exception as shown below.

The following code catches the null reference exception only when it is not a pre-defined holiday (through the IsHoliday method).

try{//code}catch(System.NullReferenceException ex) if (!IsHoliday(DateTime.Now)){//log this error}
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist