diff options
author | Matthew Newhook <matthew@zeroc.com> | 2002-05-02 21:02:01 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2002-05-02 21:02:01 +0000 |
commit | 26db75f9d541c90ad4ec6feb04e0404e3e47bfe5 (patch) | |
tree | 1d948791284183b9cae8f8a6e284dea382a7bacb /cpp/src | |
parent | Whoops. Left some debugging printouts in - this fixes that. (diff) | |
download | ice-26db75f9d541c90ad4ec6feb04e0404e3e47bfe5.tar.bz2 ice-26db75f9d541c90ad4ec6feb04e0404e3e47bfe5.tar.xz ice-26db75f9d541c90ad4ec6feb04e0404e3e47bfe5.zip |
Updates.
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Freeze/EvictorI.cpp | 10 |
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"; +} |