Interface ChatExceptionEventListener

interface ChatExceptionEventListener {
    onExcept(params: {
        except: ChatException;
        extra?: Record<string, string>;
        from?: string;
    }): void;
}

Methods

Methods

  • 异常事件监听回调。

    Parameters

    • params: {
          except: ChatException;
          extra?: Record<string, string>;
          from?: string;
      }
      • except: ChatException
      • Optionalextra?: Record<string, string>
      • Optionalfrom?: string

    Returns void

    • Param [except] 异常对象。
    • Param [from] 异常来源。
    • Param [extra] 额外信息。