Resume Statement

Resume Next

Resume line

Resume [0]

This statement resumes execution after an error-handling routine is finished.

Next - If the error occurred in the same procedure as the error handler, execution resumes with the statement immediately following the statement that caused the error. If the error occurred in a called procedure, execution resumes with the statement immediately following the statement that last called out of the procedure containing the error-handling routine.

line - Execution resumes at the line specified in the required line argument. The line argument is a line label or line number and must be in the same procedure as the error handler.

More:

Example - Resume Statement