UNPKG

node-red-contrib-tak-registration

Version:

A Node-RED node to register to TAK and to help wrap files as datapackages to send to TAK

16 lines (14 loc) 329 B
/** * @param {string=} message Optional message * @extends {Error} * @constructor * @private */ export default function OperationNotSupported (message) { this.message = message || '' }; OperationNotSupported.prototype = new Error() /** * @type {string} */ OperationNotSupported.prototype.name = 'OperationNotSupported'