Minder
Minder
is a utility library that provides two context managers to coordinate the safe handling of
exception raising.
Goals
We want to ensure:
Robustness: No errors can be raised.
Containment: Any errors that occur are handled.
Legibility: Error handling does not make code hard to read.
-
Robust Code Handling
Read how we can robustly handle code that could fail and debug faster.
-
Easy to Use
Read the code examples here.