• File: ConcurrentCompilationError.js
  • Full Path: /var/www/paytek-africa.com/node_modules/webpack/lib/ConcurrentCompilationError.js
  • Date Modified: 07/19/2022 5:05 PM
  • File size: 441 bytes
  • MIME-type: text/plain
  • Charset: utf-8
/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Maksim Nazarjev @acupofspirt
*/

"use strict";

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

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

		this.name = "ConcurrentCompilationError";
		this.message =
			"You ran Webpack twice. Each instance only supports a single concurrent compilation at a time.";
	}
};