We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d2c6513 + f281723 commit 3605035Copy full SHA for 3605035
lib/ChunkRenderError.js
@@ -6,7 +6,15 @@
6
7
const WebpackError = require("./WebpackError");
8
9
+/** @typedef {import("./Chunk")} Chunk */
10
+
11
class ChunkRenderError extends WebpackError {
12
+ /**
13
+ * Create a new ChunkRenderError
14
+ * @param {Chunk} chunk A chunk
15
+ * @param {string} file Related file
16
+ * @param {Error} error Original error
17
+ */
18
constructor(chunk, file, error) {
19
super();
20
0 commit comments