/** 错误码 */
typedef NS_ENUM(NSInteger, ARBoardErrorCode) {
/**
* 参数不合法。
*/
ARBoardErrorCodeInvalid_Params = 1000,
/**
* 非法操作。
*
* 白板操作相关的错误码
* 包含:
* - 添加白板错误
* - 删除白板错误
* - 重置白板
* - 清除白板
*/
ARBoardErrorCodeInvalid_Operation = 1001,
/**
* 初始化失败。
*
* 一般是因为缺少参数或参数不合法
*/
ARBoardErrorCodeInit_Error = 2000,
/**
* 服务鉴权失败。
* 根据 errorMessage 检查是否开通服务,是否被禁用
*/
ARBoardErrorCodeAuth_Failed = 2001,
/**
* 鉴权超时。
*/
ARBoardErrorCodeAuth_TimeOut = 2002,
/**
* 历史数据同步失败。
*/
ARBoardErrorCodeHistory_Sync_Failed = 2003,
/**
* 无效背景图片资源。
*/
ARBoardErrorCodeInvalid_Image_Assets = 3000,
/**
* 请求图片超时。
*/
ARBoardErrorCodeBackground_TimeOut = 3001,
};
错误码
最近更新时间:2023-06-08 01:31:38