Sha256: d8fd6ab19eeebcaad122025064bd8859320100a83622fa1badffc15326b6fdf3
Contents?: true
Size: 472 Bytes
Versions: 62
Compression:
Stored size: 472 Bytes
Contents
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ function EntryModuleNotFoundError(err) { Error.call(this); Error.captureStackTrace(this, EntryModuleNotFoundError); this.name = "EntryModuleNotFoundError"; this.message = "Entry module not found: " + err; this.details = err.details; this.error = err; } module.exports = EntryModuleNotFoundError; EntryModuleNotFoundError.prototype = Object.create(Error.prototype);
Version data entries
62 entries across 62 versions & 1 rubygems