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

10 lines
206 B
JavaScript

"use strict";
class GraphNotFoundError extends Error {
constructor(graphId) {
super(`The graph \`${graphId}\` was not found.`);
this.graphId = graphId;
}
}
module.exports = GraphNotFoundError;