Arne Mertz describes in his recent article insights about exception handling.
Don’t Try Too Hard! – Exception Handling
by Arne Mertz
From the article:
Among C++ developers there often appears to be a misconception about what it means to deal with code that can throw exceptions. The misconception is that the possibility of exceptions means one has to
try
andcatch
often and almost everywhere. I will try to explain why I think that is wrong and where I thinktry
/catch
is appropriate and where not.
Add a Comment
Comments are closed.