jiuyiUniapp/service/node_modules/metro/src/IncrementalBundler/GraphNotFoundError.js

10 lines
206 B
JavaScript
Raw Normal View History

2025-02-13 09:59:20 +08:00
"use strict";
class GraphNotFoundError extends Error {
constructor(graphId) {
super(`The graph \`${graphId}\` was not found.`);
this.graphId = graphId;
}
}
module.exports = GraphNotFoundError;