HP Pascal/iX Reference Manual (31502-90022)

A-: 58
---------------------------------------------------------------------------------------
716 MESSAGE CANNOT WRITE ENUMERATED VALUE (PASCERR 716)
RT CAUSE An attempt was made to write an enumerated variable to a
textfile, but the current ordinal value of the variable is not
within the range of the enumerated type.
ACTION Check the program's logic.
---------------------------------------------------------------------------------------
717 MESSAGE INVALID BOOLEAN READ (PASCERR 717)
RT CAUSE An attempt was made to read a Boolean value from a textfile,
but a non-boolean value was found.
ACTION Correct the input.
---------------------------------------------------------------------------------------
718 MESSAGE INVALID FLOATING POINT NUMBER REPRESENTATION (PASCERR 718)
RT CAUSE An attempt was made to read a real or longreal number from a
textfile, but an invalid floating point number was found.
ACTION Correct the program's logic to read the real or longreal from
the correct place in the file or string, verify that the
correct file or string is being accessed, or correct the
corrupted file or string.
---------------------------------------------------------------------------------------
719 MESSAGE INVALID CALL TO EOLN (PASCERR 719)
RT CAUSE The EOLN function was called for a file positioned at
end-of-file. An end-of-line marker precedes the end-of-file in
every text file, but this final end-of-line marker had already
been read past.
ACTION Check for end-of-file before calling EOLN.
---------------------------------------------------------------------------------------
720 MESSAGE UNABLE TO LOCK FILE (PASCERR 720)
RT CAUSE An attempt was made to lock a file without specifying the lock
option in the call to open. This error should never occur
since in HP Pascal the only way to lock a file is by specifying
this lock option.
ACTION None
---------------------------------------------------------------------------------------
721 MESSAGE WRITE FIELD WIDTH TOO LARGE (PASCERR 721)
RT CAUSE Either an attempt was made to write a number with a field width
greater than 254 characters, or an attempt was made to write a
longreal in fixed point format which would result in an
excessive number of digits being printed.
ACTION Reduce the field width if it is greater than 254 characters.
Write large longreals in floating point format.
---------------------------------------------------------------------------------------
722 MESSAGE CANNOT "ASSOCIATE" FILE OPENED BY A PASCAL ROUTINE (PASCERR