summaryrefslogtreecommitdiffstats
path: root/node_modules/webpack/lib/RemovedPluginError.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/webpack/lib/RemovedPluginError.js')
-rw-r--r--node_modules/webpack/lib/RemovedPluginError.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/node_modules/webpack/lib/RemovedPluginError.js b/node_modules/webpack/lib/RemovedPluginError.js
new file mode 100644
index 0000000..626c3b4
--- /dev/null
+++ b/node_modules/webpack/lib/RemovedPluginError.js
@@ -0,0 +1,11 @@
+"use strict";
+
+const WebpackError = require("./WebpackError");
+
+module.exports = class RemovedPluginError extends WebpackError {
+ constructor(message) {
+ super(message);
+
+ Error.captureStackTrace(this, this.constructor);
+ }
+};