UNPKG

video-ad-sdk

Version:

VAST/VPAID SDK that allows video ads to be played on top of any player

11 lines (10 loc) 220 B
/** * Ad unit error */ export class AdUnitError extends Error { constructor(message) { super(message); this.name = 'AdUnitError'; Object.setPrototypeOf(this, AdUnitError.prototype); } }