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