An error-handling subroutine will either:
run to the end of the procedure, in which case execution resumes in the calling procedure.
or, use the Resume keyword to resume execution inside the same procedure.
The Resume keyword should only ever be used inside an error handling subroutine, becau...