line_push/node_modules/webpack/lib/RemovedPluginError.js
2022-07-21 03:28:35 +00:00

12 lines
229 B
JavaScript

"use strict";
const WebpackError = require("./WebpackError");
module.exports = class RemovedPluginError extends WebpackError {
constructor(message) {
super(message);
Error.captureStackTrace(this, this.constructor);
}
};