summaryrefslogtreecommitdiff
path: root/cpp/src/Freeze/MapI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Freeze/MapI.cpp')
-rw-r--r--cpp/src/Freeze/MapI.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/src/Freeze/MapI.cpp b/cpp/src/Freeze/MapI.cpp
index 390b4253ccb..5388dc56b4d 100644
--- a/cpp/src/Freeze/MapI.cpp
+++ b/cpp/src/Freeze/MapI.cpp
@@ -1671,3 +1671,10 @@ Freeze::InvalidPositionException::ice_print(ostream& out) const
Exception::ice_print(out);
out << ":\ninvalid position";
}
+
+void
+Freeze::IndexNotFoundException::ice_print(ostream& out) const
+{
+ Exception::ice_print(out);
+ out << ":\ncould not find index \"" << indexName << "\" on map \"" << mapName << "\"";
+}