Sha256: e09923bc667868b0191e4f91e07a89902e87c403d23287ee1945b4d3a8476fd3
Contents?: true
Size: 516 Bytes
Versions: 11
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 EntryModuleNotFoundError extends WebpackError { constructor(err) { super(); this.name = "EntryModuleNotFoundError"; this.message = "Entry module not found: " + err; this.details = err.details; this.error = err; Error.captureStackTrace(this, this.constructor); } } module.exports = EntryModuleNotFoundError;
Version data entries
11 entries across 7 versions & 4 rubygems