summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2002-05-02 21:02:01 +0000
committerMatthew Newhook <matthew@zeroc.com>2002-05-02 21:02:01 +0000
commit26db75f9d541c90ad4ec6feb04e0404e3e47bfe5 (patch)
tree1d948791284183b9cae8f8a6e284dea382a7bacb /cpp/src
parentWhoops. Left some debugging printouts in - this fixes that. (diff)
downloadice-26db75f9d541c90ad4ec6feb04e0404e3e47bfe5.tar.bz2
ice-26db75f9d541c90ad4ec6feb04e0404e3e47bfe5.tar.xz
ice-26db75f9d541c90ad4ec6feb04e0404e3e47bfe5.zip
Updates.
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Freeze/EvictorI.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/cpp/src/Freeze/EvictorI.cpp b/cpp/src/Freeze/EvictorI.cpp
index d91b0c9e439..63520e58176 100644
--- a/cpp/src/Freeze/EvictorI.cpp
+++ b/cpp/src/Freeze/EvictorI.cpp
@@ -500,3 +500,13 @@ Freeze::EvictorIteratorI::next()
++_curr;
return ident;
}
+
+//
+// Print for the various exception types.
+//
+void
+Freeze::NoSuchElementException::ice_print(ostream& out) const
+{
+ Exception::ice_print(out);
+ out << ":\nunknown local exception";
+}