All Questions
4 questions
40
votes
6
answers
38k
views
Try/Catch/Log/Rethrow - Is Anti Pattern?
I can see several post where importance of handling exception at central location or at process boundary been emphasized as a good practice rather than littering every code block around try/catch. I ...
6
votes
5
answers
6k
views
How to handle exceptions that get absorbed by a 3rd party library?
I'm currently having an issue with a 3rd party control library provider. They have an exception occulting culture that gets in the way of my general fail-fast approach when developing software.
An ...
6
votes
3
answers
3k
views
Exception Handling Frequency/Log Detail
I am working on a fairly complex .NET application that interacts with another application. Many single-line statements are possible culprits for throwing an Exception and there is often nothing I can ...
13
votes
5
answers
996
views
When to start writing Exception Handling, Logging
When do you start writing your Exception Handling Code? When do you start writing Logging Statements.
For the purpose of elaborating this question, let us assume that we are on .NET platform with ...