So much extra typing to implement this pattern & the linter still can't tell if you are doing `On Error Resume Next` for good or bad reasons.
```python
# noinspection PyBroadException
# pylint: disable=broad-exception-caught
try:
do_the_thing_that_needs_catch_any()
except Exception:
default_behavior()
```