This document discusses error handling in VBScript. It defines key terminology like faults, errors, failures, detectors, and exceptions. It explains the purpose of error handling to make software more reliable and protect systems from unacceptable behavior during errors. It also covers the On Error statement and its Resume Next and GoTo 0 options for controlling error handling. On Error Resume Next allows code to continue after errors but can mask problems, so careful debugging is required.