Sha256: ae7414e2bb38caea66d64f3ec1732d6ac19ac782d604c7241884a81d832b7d02
Contents?: true
Size: 554 Bytes
Versions: 28
Compression:
Stored size: 554 Bytes
Contents
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const WebpackError = require("./WebpackError"); module.exports = class ModuleDependencyWarning extends WebpackError { constructor(module, err, loc) { super(err.message); this.name = "ModuleDependencyWarning"; this.details = err.stack .split("\n") .slice(1) .join("\n"); this.module = module; this.loc = loc; this.error = err; this.origin = module.issuer; Error.captureStackTrace(this, this.constructor); } };
Version data entries
28 entries across 27 versions & 9 rubygems