diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-11-07 14:45:01 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-11-07 14:45:01 -0500 |
commit | 302e8096f25c85c6a6fc3fb5c3ca04736c5db410 (patch) | |
tree | 234b54164cd88fd2002972c0f18767f9049e5457 /cpp/src/Freeze/MapI.cpp | |
parent | - Fixing bug 2522 for Python. This involved adding the C++ class (diff) | |
download | ice-302e8096f25c85c6a6fc3fb5c3ca04736c5db410.tar.bz2 ice-302e8096f25c85c6a6fc3fb5c3ca04736c5db410.tar.xz ice-302e8096f25c85c6a6fc3fb5c3ca04736c5db410.zip |
Fixed bug #819 (C++)
Diffstat (limited to 'cpp/src/Freeze/MapI.cpp')
-rw-r--r-- | cpp/src/Freeze/MapI.cpp | 7 |
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 << "\""; +} |