UNPKG

knxultimate

Version:

KNX IP protocol implementation for Node. This is the ENGINE of Node-Red KNX-Ultimate node.

10 lines (8 loc) 271 B
export default class InvalidValueError extends Error { public constructor() { super('invalid value') // We need to set the prototype explicitly Object.setPrototypeOf(this, InvalidValueError.prototype) Object.getPrototypeOf(this).name = 'InvalidValueError' } }