CImageSourceErrorListener
The CImageSourceErrorListener
class is an abstract base class for receiving error notifications from an image source.
Definition
Namespace: dynamsoft::basic_structures
Assembly: DynamsoftCore
class CImageSourceErrorListener
Methods Summary
Method | Description |
---|---|
OnErrorReceived |
Called when an error is received from the image source. |
OnErrorReceived
Called when an error is received from the image source.
virtual void OnErrorReceived(int errorCode, const char* errorMessage)
Parameters
[in] errorCode
The integer error code indicating the type of error.
[in] errorMessage
A C-style string containing the error message providing additional information about the error.
See Also