ERRORTEXT

 ───ERRORTEXT(n)──────

ERRORTEXT returns the error message associated with error number n. n must be in the range 0-99, and any other value is an error. If n is in the allowed range, but is not a defined REXX error number, the null string is returned.

Here are some examples:

ERRORTEXT(16)    ->    'Label not found'
ERRORTEXT(60)    ->    ''


[Back: DIRECTORY]
[Next: ENDLOCAL]