1234567891011121314151617181920212223242526272829 |
- "use strict";
- class WebpackError extends Error {
-
- constructor(message) {
- super(message);
- this.details = undefined;
- this.missing = undefined;
- this.origin = undefined;
- this.dependencies = undefined;
- this.module = undefined;
- Error.captureStackTrace(this, this.constructor);
- }
- inspect() {
- return this.stack + (this.details ? `\n${this.details}` : "");
- }
- }
- module.exports = WebpackError;
|