NET/MASTER Messages Manual

NNM2022
Messages
2–362 106159 Tandem Computers Incorporated
NNM2022
error_type
LINE CONTINUATION OVER EOF
Cause. NCL reached the end of the file but the last line ended with the line
continuation character, a comma.
error_type
is ERROR: or FATAL ERROR:..
Effect. If this is an error, compilation continues but no executable code is produced. If
this is a fatal error, compilation stops and no executable code is produced.
Recovery. Correct the last line.
NNM2023
error_type
STATEMENTS AFTER END OF OPEN CODE IGNORED
Cause. NCL found the END statement for the top-level procedure before reaching the
end of the file.
error_type
is ERROR:.
Effect. Compilation continues, but no executable code is produced.
Recovery. Delete the statements after the END statement.
NNM2024
error_type
INVALID LEADING TOKEN FOR STATEMENT
Cause. NCL could not recognize a statement. The initial keyword was incorrect.
error_type
is ERROR:.
Effect. Compilation continues, but no executable code is produced.
Recovery. Correct the statement.
NNM2025
error_type
EXIT FROM WITHIN FUNCTION
Cause. NCL found an EXIT statement in a function. A RETURN statement was
missing.
error_type
is ERROR:.
Effect. Compilation continues, but no executable code is produced.
Recovery. If the EXIT statement is for a higher level procedure, add a RETURN
statement in the function; if the EXIT statement is for the function, replace the
statement with a RETURN statement.