1 parent 830e6d2 commit f281723Copy full SHA for f281723
1 file changed
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