UNPKG

@openhps/core

Version:

Open Hybrid Positioning System - Core component

19 lines 485 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PushError = void 0; /** * Push error * @category Graph */ class PushError extends Error { constructor(frameUID, nodeUID, error) { super(); this.frameUID = frameUID; this.nodeUID = nodeUID; this.name = error.name; this.message = error.message; this.stack = error.stack; } } exports.PushError = PushError; //# sourceMappingURL=PushError.js.map