Share

acadErrorStatusText

C++

ACDBCORE2D_PORT const ACHAR * acadErrorStatusText(
    Acad::ErrorStatus
);

File

acestext.h

Description

This function will return look up, and return a copy of, the error string associated with errno. For example:

acadErrorStatusText(Acad::eOpenForWrite);

will return the string eOpenForWrite.

This function is most useful as part of acutPrintf() or message dialogs that are part of an error handling routine in an ObjectARX program.

Parameters

Parameters Description
unnamed Input ErrorStatus value (which is ultimately an int)

Was this information helpful?