Newer
Older
alert / js / node_modules / webpack / lib / RemovedPluginError.js
@Réz István Réz István on 18 Nov 2021 229 bytes first commit
"use strict";

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

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

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