Returns the text stringassociated with the negative status code generated by a "DC" data import/export function that does not complete successfully.
Because the error message number status includes both the error number and an ID number that corresponds to the "DC" function that produced the error, both the function name and the specific error are described in the message string returned by DC_ERROR_MSG.
status = DC_READ_8_BIT('mongo.img', mongo, XSize=xs, YSize=ys)
IF (status LT 0) THEN BEGIN
msg_str = DC_ERROR_MSG(status)
PRINT, msg_str
ENDIF ELSE BEGIN
WINDOW, XSize=xs, YSize=ys
TVSCL, mongo
ENDELSE