Pragmatic error handling
I’ll present a simple and practical approach to error management, based on my experience.
This is the result of my analysis of the most common problems I found in enterprise applications. We’ll walk through some patterns and anti-patterns about creating, throwing, and handling exceptions.
Don’t centralize
Avoid exception hierarchies
Inheritance is often abused in the object-oriented paradigm. This also happens on exception…