onExtensionErrorWithContext
Occurs when the extension runs incorrectly.
virtual void onExtensionErrorWithContext(const ExtensionContext &context, int error, const char* message) {
(void)context;
(void)error;
(void)message;
}
In case of extension enabling failure or runtime errors, the extension triggers this callback and reports the error code along with the reasons.
Parameters
- context
- The context information of the extension, see ExtensionContext.
- error
- Error code. For details, see the extension documentation provided by the extension provider.
- message
- Reason. For details, see the extension documentation provided by the extension provider.