diff options
author | Marc Laukien <marc@zeroc.com> | 2001-10-17 18:48:46 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-10-17 18:48:46 +0000 |
commit | d7d8a18788c78e27d257ff12d92dd3f23bfc774a (patch) | |
tree | 6adecc8de9f13aae7c20c5280fd1069f9ab01e81 /cpp/src/Ice/Exception.cpp | |
parent | slice definitions for PyceExt purposes only (diff) | |
download | ice-d7d8a18788c78e27d257ff12d92dd3f23bfc774a.tar.bz2 ice-d7d8a18788c78e27d257ff12d92dd3f23bfc774a.tar.xz ice-d7d8a18788c78e27d257ff12d92dd3f23bfc774a.zip |
fixes
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 1aafeacb5f5..3becb0f7419 100644 --- a/cpp/src/Ice/Exception.cpp +++ b/cpp/src/Ice/Exception.cpp @@ -197,6 +197,13 @@ IceUtil::printException(ostream& out, const UserExceptionUnmarshalException& ex) } ostream& +IceUtil::printException(ostream& out, const ProxyUnmarshalException& ex) +{ + IceUtil::printException(out, static_cast<const IceUtil::Exception&>(ex)); + return out << ":\nprotocol error: inconsistent proxy data during unmarshaling"; +} + +ostream& IceUtil::printException(ostream& out, const StringEncodingException& ex) { IceUtil::printException(out, static_cast<const IceUtil::Exception&>(ex)); |