Add a catch(…) Statement to Your Exception Handlers’ Hierarchy

Add a catch(…) Statement to Your Exception Handlers’ Hierarchy

If your application uses exception handling, it is recommended that you always add a catch(…) statement after all the existing catch statements. Remember that even if your code contains the appropriate handlers for expected exception, exceptions of unexpected types may be thrown by standard functions, algorithms and containers. By adding a catch(…) statement at the end of existing handlers you guarantee that no exception is left unhandled. Furthermore, a catch(…) statement ensures that the program properly destroys all local objects and closes open files and streams as part of the stack unwinding process in the event of an exception. For example:

         int main(){  try  {    func();  }  catch(DerivedEx& de) //most derived exception  {}  catch(Ex& exc)    {}  catch(...) //catch any other unexpected exception  {}}

Note that catch(…) cannot detect the type of the exception it handles. Therefore, you should perform only general cleanup and logging operations inside a catch(…) block.

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several