Sha256: faefb6a623805a7964332502776d4775e3668765951b253688cb75044f79d7bd
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 ModuleNotFoundError(module, err) { Error.call(this); Error.captureStackTrace(this, ModuleNotFoundError); this.name = "ModuleNotFoundError"; this.message = "Module not found: " + err; this.details = err.details; this.module = module; this.error = err; } module.exports = ModuleNotFoundError; ModuleNotFoundError.prototype = Object.create(Error.prototype);
Version data entries
62 entries across 62 versions & 1 rubygems