diff options
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"; +} |