Error Event

Fires if an unhandled error occurs during an event.

Syntax

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

Remarks

This event fires if an unhandled error occurs during another event. Developers can use this information to help track down unhandled errors in an application's event handlers.

Copyright (c) 2022 Callback Technologies, Inc. - All rights reserved.
CBFS Vault 2020 Qt Edition - Version 20.0 [Build 8145]