Returns a message corresponding to an FCHECK error number.
Use |
 |
You can use FERRMSG in your program to obtain the error message
associated with a specific error number returned in a call to FCHECK.
The FCHECK error number is used as the value of fserrorcode
in the call to FERRMSG. The textual message associated with the
error number is then returned in msgbuffer,
with the length of the message returned in msglength.
A typical error handling routine might consist of the following
steps:
Check condition code.
If CCL or CCG, call FCHECK to obtain specific details
about the error that occurred, including the error number.
Call FERRMSG using the error number obtained in
the FCHECK call as the value of fserrorcode.
You can then print the error message, display it to the terminal
screen or console, or take whatever action is appropriate.