ErrorInfo
The ErrorInfo interface defines the structure for error objects returned by the CaptureVisionRouter.
interface ErrorInfo {
errorCode: EnumErrorCode;
errorString: string
}
errorCode
A predefined enumerated code that categorizes the type of error. This code is used programmatically to identify specific error conditions.
See Also EnumErrorCode
errorString
A human-readable message that describes the error. This message can be displayed to users or logged for debugging purposes.