Error Event

This event is fired when the server detects an error.

Syntax

class SMPPErrorEventParams {
public:
  int ErrorCode();
  const QString &Description();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void Error(SMPPErrorEventParams *e);
// Or, subclass SMPP and override this emitter function. virtual int FireError(SMPPErrorEventParams *e) {...}

Remarks

If the server sends an error not related to a command sent from the class, the class will fire an Error event containing information related to the error.

ErrorCode will contain the code sent by the server, and Description will contain a standard interpretation of that code.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 Qt Edition - Version 20.0 [Build 8307]