The whole point is to never run in a broken state.... that path leads to expensive misery.
The point of resetting is to clear out bad state... if the condition has no defined recovery process then you cannot continue safely.
I'm not saying to not handle an error... I'm saying to not attempt recovery from undefined errors.
If you don't know what went wrong, don't attempt to 'handle' it... reset.
What is needed is true error recovery thought, not syntax that encourages proper to just put in empty exception handlers.
Your point is arguing for error returns in my view.
The whole point is to never run in a broken state.... that path leads to expensive misery.
The point of resetting is to clear out bad state... if the condition has no defined recovery process then you cannot continue safely.
I'm not saying to not handle an error... I'm saying to not attempt recovery from undefined errors.
If you don't know what went wrong, don't attempt to 'handle' it... reset.