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, 0 insertions, 11 deletions
diff --git a/node_modules/webpack/lib/RemovedPluginError.js b/node_modules/webpack/lib/RemovedPluginError.js
deleted file mode 100644
index 626c3b4..0000000
--- a/node_modules/webpack/lib/RemovedPluginError.js
+++ /dev/null
@@ -1,11 +0,0 @@
-"use strict";
-
-const WebpackError = require("./WebpackError");
-
-module.exports = class RemovedPluginError extends WebpackError {
- constructor(message) {
- super(message);
-
- Error.captureStackTrace(this, this.constructor);
- }
-};