Chapter 7
RAPID!
Tables
4460 GSM System Option and 4468 EDGE System Option
Version 12.20
325
Runtime errors
81
SUB or FUNCTION already exist
There is already a procedure or function with this name.
Many of those cases occur by chaining RAPID! program files.
82
SUB not declared
The procedure you want to use currently has not been
defined before. In order to avoid that, it is recommended to
declare all procedures and functions at the beginning of the
main program.
83
SUB or FUNCTION declaration misplaced
A procedure or function declaration cannot be used at this
place.
84
SUB END or FUNCTION END does not match to
header
The last program line of any procedure or function must be
either an
END SUB
(for procedures) or an
END FUNCTION
(for functions).
85
SUB EXIT or FUNCTION EXIT does not match to
header
Any procedure must be exited with
EXIT SUB
. Any function
must be exited with
EXIT FUNCTION
.
86
SUB END or FUNCTION END missing
The last program line of any procedure or function must be
either an
END SUB
(for procedures) or an
END FUNCTION
(for functions).
89
Too many arguments
More arguments than expected were used.
97
Internal Error: Parameter
A procedure or function was called, using the wrong type or
the wrong number of arguments.
98
Internal Error: Command not implemented
You are trying to use a command that has not been imple-
mented yet. However, the command is a reserved RAPID!
name and every attempt to use it will cause this message.
99
Internal Error: PASS2
This message indicates an internal error of the program
loader. If you receive this message after a restart, please
contact a Willtek support center.
Code
Message and Comment