|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
454 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | MIT License http://www.opensource.org/licenses/mit-license.php
|
|---|
| 3 | Author Maksim Nazarjev @acupofspirt
|
|---|
| 4 | */
|
|---|
| 5 |
|
|---|
| 6 | "use strict";
|
|---|
| 7 |
|
|---|
| 8 | const WebpackError = require("./WebpackError");
|
|---|
| 9 |
|
|---|
| 10 | class ConcurrentCompilationError extends WebpackError {
|
|---|
| 11 | constructor() {
|
|---|
| 12 | super(
|
|---|
| 13 | "You ran Webpack twice. Each instance only supports a single concurrent compilation at a time."
|
|---|
| 14 | );
|
|---|
| 15 |
|
|---|
| 16 | this.name = "ConcurrentCompilationError";
|
|---|
| 17 | }
|
|---|
| 18 | }
|
|---|
| 19 |
|
|---|
| 20 | module.exports = ConcurrentCompilationError;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.