| 123456789101112131415161718192021 |
- /*
- MIT License http://www.opensource.org/licenses/mit-license.php
- Author Maksim Nazarjev @acupofspirt
- */
- "use strict";
- const WebpackError = require("./WebpackError");
- class ConcurrentCompilationError extends WebpackError {
- constructor() {
- super(
- "You ran Webpack twice. Each instance only supports a single concurrent compilation at a time."
- );
- /** @type {string} */
- this.name = "ConcurrentCompilationError";
- }
- }
- module.exports = ConcurrentCompilationError;
|