Meeting SDK for Linux API Reference
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IZoomLastError Class Referenceabstract

Error mechanism interface provided by the SDK This feature is gradually improved, so some errors may not be supported. More...

#include <zoom_sdk_def.h>

Public Member Functions

virtual LastErrorType GetErrorType () const =0
 Get the last error type.
 
virtual UINT64 GetErrorCode () const =0
 Get the last error code.
 
virtual const zchar_tGetErrorDescription () const =0
 Get the description for the last error.
 
virtual ~IZoomLastError ()
 

Detailed Description

Error mechanism interface provided by the SDK This feature is gradually improved, so some errors may not be supported.

Definition at line 328 of file zoom_sdk_def.h.

Constructor & Destructor Documentation

◆ ~IZoomLastError()

virtual IZoomLastError::~IZoomLastError ( )
inlinevirtual

Definition at line 341 of file zoom_sdk_def.h.

341{};

Member Function Documentation

◆ GetErrorCode()

virtual UINT64 IZoomLastError::GetErrorCode ( ) const
pure virtual

Get the last error code.

Returns
If the function succeeds, the error code will be returned.

◆ GetErrorDescription()

virtual const zchar_t * IZoomLastError::GetErrorDescription ( ) const
pure virtual

Get the description for the last error.

Returns
If the function succeeds, the error description will be returned. If there is no error, it will return an empty string of length zero(0).

◆ GetErrorType()

virtual LastErrorType IZoomLastError::GetErrorType ( ) const
pure virtual

Get the last error type.

Returns
If the function succeeds, the error type will be returned. For more details, see LastErrorType enum.