summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Exception.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-10-22 14:14:10 +0000
committerMarc Laukien <marc@zeroc.com>2001-10-22 14:14:10 +0000
commitba88e06fd6d4a10394913697033b5858773946f7 (patch)
treef80f306006c885eff2370450170df8731bf5b753 /cpp/src/Ice/Exception.cpp
parentfixes for STLport-4.5 (diff)
downloadice-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.cpp24
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