2013-01-31 01:49:25 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
2017-03-20 12:40:30 +08:00
|
|
|
"use strict";
|
|
|
|
|
2017-03-25 05:17:47 +08:00
|
|
|
const WebpackError = require("./WebpackError");
|
|
|
|
|
|
|
|
class EntryModuleNotFoundError extends WebpackError {
|
2017-03-20 12:40:30 +08:00
|
|
|
constructor(err) {
|
|
|
|
super();
|
2017-03-25 05:17:47 +08:00
|
|
|
|
2017-03-20 12:40:30 +08:00
|
|
|
this.name = "EntryModuleNotFoundError";
|
|
|
|
this.message = "Entry module not found: " + err;
|
|
|
|
this.details = err.details;
|
|
|
|
this.error = err;
|
2017-03-25 05:17:47 +08:00
|
|
|
|
|
|
|
Error.captureStackTrace(this, this.constructor);
|
2017-03-20 12:40:30 +08:00
|
|
|
}
|
2013-01-31 01:49:25 +08:00
|
|
|
}
|
|
|
|
|
2017-03-20 12:40:30 +08:00
|
|
|
module.exports = EntryModuleNotFoundError;
|