snyk-nodejs-lockfile-parser
Version:
Generate a dep tree given a lockfile
13 lines • 462 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.TreeSizeLimitError = void 0;
class TreeSizeLimitError extends Error {
constructor() {
super('Tree size exceeds the allowed limit.');
this.code = 422;
this.name = 'TreeSizeLimitError';
Error.captureStackTrace(this, TreeSizeLimitError);
}
}
exports.TreeSizeLimitError = TreeSizeLimitError;
//# sourceMappingURL=tree-size-limit-error.js.map
;