Code Smell 132 - Exception Try Too Broad
TL;DR: Be as specific as possible when handling errors.
Problems
Fail fast principle violation
Missing errors
False negatives
Solutions
Narrow the exception handler as much as possible
Sample Code
Wrong
import calendar, datetime
try:
b...
maximilianocontieri.com2 min read