User Guide
Compiler Error Messages
111
A
xcess Programming Language
Compiler Error Messages (Cont.)
Too few parameters in Call There are not enough parameters being passed to
the subroutine.
Too many include files A program may only contain up to 20 include files.
Too many parameters in Call There are too many parameters being passed to
the subroutine.
Type mismatch in function call A function was called with a parameter of the wrong
type. For instance, attempting to use ITOA with an
array as a parameter will result in an error.
Undefined identifier An attempt was made to reference an identifier that
has not been defined previously in the program.
Unmatched #End_If An #END_IF keyword was found, but no
#IF_DEFINED or #IF_NOT_DEFINED was previ-
ously compiled.
Unrecognized character in input file An invalid character was found during compilation.
Use System_Call [instance] 'name' This error occurs if a SYSTEM_CALL statement is
written incorrectly as SYSTEM_CALL 'NAME'
[INSTANCE NUMBER].
Variable assignment not allowed here Variables may not be assigned a value when they
are defined in the DEFINE_VARIABLE section.
Wait not found A statement references a Wait by a name that does
not exist. For example, CANCEL_WAIT 'CASS' will
produce this error if there is no WAIT named CASS.