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 BufferLengthError extends Error { public constructor() { super('Buffer Length') // We need to set the prototype explicitly Object.setPrototypeOf(this, BufferLengthError.prototype) Object.getPrototypeOf(this).name = 'BufferLengthError' } }