snyk-nodejs-lockfile-parser
Version:
Generate a dep tree given a lockfile
13 lines • 472 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnsupportedRuntimeError = void 0;
class UnsupportedRuntimeError extends Error {
constructor(...args) {
super(...args);
this.name = 'UnsupportedRuntimeError';
this.code = 500;
Error.captureStackTrace(this, UnsupportedRuntimeError);
}
}
exports.UnsupportedRuntimeError = UnsupportedRuntimeError;
//# sourceMappingURL=unsupported-runtime-error.js.map
;