diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-05-14 21:17:57 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-05-14 21:17:57 +0000 |
commit | fd470410eafeacaa25a675673ef05c5cb20db1ba (patch) | |
tree | 3d352ebd214909c4fa8a1536f26f918f6d48094e /cpp/src/Ice/Exception.cpp | |
parent | Bug 1998 (diff) | |
download | ice-fd470410eafeacaa25a675673ef05c5cb20db1ba.tar.bz2 ice-fd470410eafeacaa25a675673ef05c5cb20db1ba.tar.xz ice-fd470410eafeacaa25a675673ef05c5cb20db1ba.zip |
Java dispatch interceptor (see bug #2126)
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r-- | cpp/src/Ice/Exception.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp index 9c79f13c947..84a78413c15 100644 --- a/cpp/src/Ice/Exception.cpp +++ b/cpp/src/Ice/Exception.cpp @@ -666,3 +666,10 @@ Ice::FixedProxyException::ice_print(ostream& out) const Exception::ice_print(out); out << ":\nfixed proxy exception"; } + +void +Ice::ResponseSentException::ice_print(ostream& out) const +{ + Exception::ice_print(out); + out << ":\nresponse sent exception"; +} |