diff options
author | Marc Laukien <marc@zeroc.com> | 2001-10-22 14:14:10 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-10-22 14:14:10 +0000 |
commit | ba88e06fd6d4a10394913697033b5858773946f7 (patch) | |
tree | f80f306006c885eff2370450170df8731bf5b753 /cpp/src/Ice/Exception.cpp | |
parent | fixes for STLport-4.5 (diff) | |
download | ice-ba88e06fd6d4a10394913697033b5858773946f7.tar.bz2 ice-ba88e06fd6d4a10394913697033b5858773946f7.tar.xz ice-ba88e06fd6d4a10394913697033b5858773946f7.zip |
removed truncation feature
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r-- | cpp/src/Ice/Exception.cpp | 24 |
1 files changed, 5 insertions, 19 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp index 501bcf45c77..3f9a618d3bf 100644 --- a/cpp/src/Ice/Exception.cpp +++ b/cpp/src/Ice/Exception.cpp @@ -186,21 +186,14 @@ void Ice::NoObjectFactoryException::_print(ostream& out) const { Exception::_print(out); - out << ":\nprotocol error: no object factory found for servant with operations"; + out << ":\nprotocol error: no suitable object factory found"; } void -Ice::ServantUnmarshalException::_print(ostream& out) const +Ice::NoUserExceptionFactoryException::_print(ostream& out) const { Exception::_print(out); - out << ":\nprotocol error: servant type unknown or doesn't match signature"; -} - -void -Ice::UserExceptionUnmarshalException::_print(ostream& out) const -{ - Exception::_print(out); - out << ":\nprotocol error: exception type unknown or doesn't match signature"; + out << ":\nprotocol error: no suitable user exception factory found"; } void @@ -211,17 +204,10 @@ Ice::ProxyUnmarshalException::_print(ostream& out) const } void -Ice::StringEncodingException::_print(ostream& out) const -{ - Exception::_print(out); - out << ":\nprotocol error: string or wide string encoding error"; -} - -void -Ice::ObjectEncodingException::_print(ostream& out) const +Ice::IllegalIndirectionException::_print(ostream& out) const { Exception::_print(out); - out << ":\nprotocol error: object encoding error"; + out << ":\nprotocol error: encountered illegal protocol indirection"; } void |