Chapter 13. Runtime error handling

Table of Contents

Introduction
Program error
Resource error
User input error
See also

Introduction

A runtime error is an error that occurs during the execution of an application, after the application has been successfully compiled (i.e. no errors reported by the compiler).

There are 3 kinds of runtime errors:

  • program errors

  • resource errors

  • user input errors

Each kind of error will be discussed in the following sections.