MxpiErrorInfo

Description

Declares the structure of the plugin error information, which is used to store the plugin error codes and descriptions.

Structure Definition

1
2
3
4
struct MxpiErrorInfo {
    APP_ERROR ret;
    std::string errorInfo;
};

Parameters

Parameter

Description

ret

Error code information. For details, see APP_ERROR Description.

errorInfo

Error code description. For details, see APP_ERROR Description.