Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

12 rader
229 B

  1. "use strict";
  2. const WebpackError = require("./WebpackError");
  3. module.exports = class RemovedPluginError extends WebpackError {
  4. constructor(message) {
  5. super(message);
  6. Error.captureStackTrace(this, this.constructor);
  7. }
  8. };