UNPKG

@iabtechlabtcf/core

Version:

Ensures consistent encoding and decoding of TC Signals for the iab. Transparency and Consent Framework (TCF).

19 lines (18 loc) 345 B
/** * class for General GVL Errors * * @extends {Error} */ class GVLError extends Error { /** * constructor - constructs a GVLError * * @param {string} msg - Error message to display * @return {undefined} */ constructor(msg) { super(msg); this.name = 'GVLError'; } } export { GVLError };