summaryrefslogtreecommitdiffstats
path: root/node_modules/webpack/lib/RemovedPluginError.js
blob: 626c3b4fb2c6c6c9ffd3f53e04f4f9543f3d72fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
"use strict";

const WebpackError = require("./WebpackError");

module.exports = class RemovedPluginError extends WebpackError {
	constructor(message) {
		super(message);

		Error.captureStackTrace(this, this.constructor);
	}
};