forked from ard/ruoyi-api

zhangjian
2023-07-10 4bcf7f6452d6ae04f210fc5c8408ad928d6602f4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Tobias Koppers @sokra
*/
"use strict";
 
const WebpackError = require("../WebpackError");
 
class CriticalDependencyWarning extends WebpackError {
    constructor(message) {
        super();
 
        this.name = "CriticalDependencyWarning";
        this.message = "Critical dependency: " + message;
 
        Error.captureStackTrace(this, this.constructor);
    }
}
 
module.exports = CriticalDependencyWarning;