| [Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] | 
Generate a run-time error.
Source position: systemh.inc line 1528
procedure RunError(  | 
w: Word  | 
);  | 
Runerror stops the execution of the program, and generates a run-time error ErrorCode.
None.
  | 
Exit current subroutine.  | 
|
  | 
Stop program execution.  | 
Program Example55; { Program to demonstrate the RunError function. } begin { The program will stop end emit a run-error 106 } RunError (106); end.