UNPKG

node-simple-ipc

Version:

A Node.Js module for local Inter Process Communication

12 lines 366 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RemoteError = void 0; class RemoteError extends Error { constructor(message, remoteError) { super(message); this.name = RemoteError.name; this.remoteError = remoteError; } } exports.RemoteError = RemoteError; //# sourceMappingURL=remote-error.js.map