HP Pascal/iX Reference Manual (31502-90022)

A-: 53
RT CAUSE An attempt was made to index beyond the current length of the
string.
ACTION Correct the argument or the program logic.
---------------------------------------------------------------------------------------
652 MESSAGE DESIGNATED CHARACTER POSITION(S) OUTSIDE STRING (PASCERR 652)
RT CAUSE The specified offset is greater than the current length of the
string, or less than 1.
ACTION Correct either the argument or the program logic.
---------------------------------------------------------------------------------------
653 MESSAGE DESIGNATED CHARACTER POSITION(S) OUTSIDE PAC (PASCERR 653)
RT CAUSE The specified offset is greater than the upper bound of the
PAC.
ACTION Correct the program logic that has caused the invalid value to
be used; change the value that has caused the error to a
legitimate value. Also check the type definition.
---------------------------------------------------------------------------------------
654 MESSAGE ATTEMPT TO READ PAST END OF STRING (PASCERR 654)
RT CAUSE Attempt was made to read beyond the maximum length of the
string.
ACTION Correct the problem that is causing the read past the end of
the string.
---------------------------------------------------------------------------------------
655 MESSAGE INVALID NUMBER OF CHARACTERS SPECIFIED (PASCERR 655)
RT CAUSE The number of characters to be copied, moved, or deleted in the
predefined string procedure STRMOVE is less than zero.
ACTION Correct the problem that is generating the negative count.
---------------------------------------------------------------------------------------
670 MESSAGE INVALID CHARACTER FOR HEX DIGIT (PASCERR 670)
RT CAUSE The character was not in the set 0..9, A..F, or a..f.
ACTION Correct the argument to the numeric conversion function to
contain only valid characters in the particular base.
---------------------------------------------------------------------------------------
671 MESSAGE INVALID CHARACTER FOR OCTAL DIGIT (PASCERR 671)
RT CAUSE The character was not in the set 0..7.
ACTION Correct the argument to the numeric conversion function to
contain only valid characters in the particular base.
---------------------------------------------------------------------------------------
672 MESSAGE INVALID CHARACTER FOR BINARY DIGIT (PASCERR 672)
RT CAUSE The character was not in the set 0..1.
ACTION Correct the argument to the numeric conversion function to