Error Handling Functions
Statements and procedures that provide runtime error-handling capabilities.
Description:
These statements and procedures provide ways of dealing with runtime errors. Specific modules, procedures and source code lines can be retrieved, and error handlers can be set up.
Determining Errors
Procedures that retrieve information about an error.
Handling Errors
Statements that allow handling of errors.
Handling Errors
ON ERROR
Sets a global error handler using a label.
ON LOCAL ERROR
Sets a local error handler using a label.
RESUME
Resumes execution at the line where the error occurred.
RESUME NEXT
Resumes execution at the line after where the error occurred.
See also:
Back to Table of Contents