webpack/lib/ModuleNotFoundError.js

16 lines
443 B
JavaScript

/*
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.module = module;
this.error = err;
}
module.exports = ModuleNotFoundError;
ModuleNotFoundError.prototype = Object.create(Error.prototype);