knxultimate
Version:
KNX IP protocol implementation for Node. This is the ENGINE of Node-Red KNX-Ultimate node.
11 lines • 389 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class BufferLengthError extends Error {
constructor() {
super('Buffer Length');
Object.setPrototypeOf(this, BufferLengthError.prototype);
Object.getPrototypeOf(this).name = 'BufferLengthError';
}
}
exports.default = BufferLengthError;
//# sourceMappingURL=BufferLengthError.js.map