WXL
3 天以前 3bd962a6d7f61239c020e2dbbeb7341e5b842dd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Tobias Koppers @sokra
*/
 
"use strict";
 
const WebpackError = require("../WebpackError");
 
/** @typedef {import("../Module")} Module */
 
class BuildCycleError extends WebpackError {
    /**
     * Creates an instance of BuildCycleError.
     * @param {Module} module the module starting the cycle
     */
    constructor(module) {
        super(
            "There is a circular build dependency, which makes it impossible to create this module"
        );
 
        /** @type {string} */
        this.name = "BuildCycleError";
        /** @type {Module} */
        this.module = module;
    }
}
 
/** @type {typeof BuildCycleError} */
module.exports = BuildCycleError;