These messages are output by the run-time system (RTS), and so can be produced while you are compiling, debugging, or running your program. When you select an error message number, its text and severity is listed, along with an explanation of the error or problem that caused the message, and advice on how to prevent the error.
Run-time system error messages have the following format:
ErrorCode Description
where the parameters are:
There are two types of run-time error:
Fatal | A message is sent to the screen and the program terminates immediately. |
Recoverable | The error is reported to the program. You can trap these errors in your program, but often they are the result of an error in your program's logic. If the program does not trap the error, a message is sent to the screen and the program terminates immediately. |