Sha256: 38d4ca91da7dcae5eb64134fccd3d2a6d35059afce669fb3223b553894c434cc
Contents?: true
Size: 516 Bytes
Versions: 28
Compression:
Stored size: 516 Bytes
Contents
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const WebpackError = require("./WebpackError"); class ModuleNotFoundError extends WebpackError { constructor(module, err) { super("Module not found: " + err); this.name = "ModuleNotFoundError"; this.details = err.details; this.missing = err.missing; this.module = module; this.error = err; Error.captureStackTrace(this, this.constructor); } } module.exports = ModuleNotFoundError;
Version data entries
28 entries across 27 versions & 9 rubygems