UNPKG

scandit-sdk

Version:

Scandit Barcode Scanner SDK for the Web

18 lines (17 loc) 298 B
/** * @hidden */ export class CustomError extends Error { // istanbul ignore next constructor({ name = "", message = "" }: { name?: string; message?: string; } = {}) { super(message); Object.setPrototypeOf(this, CustomError.prototype); this.name = name; } }