From 0c8444b47db2a8b3606cca0adb51fcdf9a7498ec Mon Sep 17 00:00:00 2001 From: Dmitry Batkovich Date: Tue, 16 Jun 2020 15:29:29 +0300 Subject: [PATCH] indexes: improve exception message GitOrigin-RevId: 8a6f503e6f89d7fbda677b80bbb479f574b1430d --- .../src/com/intellij/util/indexing/impl/MapReduceIndex.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/util/src/com/intellij/util/indexing/impl/MapReduceIndex.java b/platform/util/src/com/intellij/util/indexing/impl/MapReduceIndex.java index a1cbfa47c514..749ff55af493 100644 --- a/platform/util/src/com/intellij/util/indexing/impl/MapReduceIndex.java +++ b/platform/util/src/com/intellij/util/indexing/impl/MapReduceIndex.java @@ -297,7 +297,7 @@ public abstract class MapReduceIndex implements InvertedIndex< throw e; } catch (Exception e) { - throw new MapInputException("Failed to map data for input " + inputId, e); + throw new MapInputException("Failed to map data for input " + inputId + " for index " + myIndexId.getName(), e); } }