What makes up a robust Error Handler?
To those experienced: what would make up a robust Error Handler, or a method for robust error handling? Example, MS Access wizards generate:
On Error GoTo Err_Event
(VB Code here)
Exit_Event:
Exit Sub
Err_Event:
MsgBox Err.Description
Resume...