@dillonkearns/elm-graphql
Version:
<img src="https://cdn.jsdelivr.net/gh/martimatix/logo-graphqelm/logo.svg" alt="dillonearns/elm-graphql logo" width="40%" align="right">
21 lines (15 loc) • 453 B
JavaScript
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
;
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;