summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/LocalException.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-09-12 19:32:28 +0000
committerMarc Laukien <marc@zeroc.com>2001-09-12 19:32:28 +0000
commitbeb7fb34ed263041178e221e66df8c2c559f3fbb (patch)
tree2b4ba45c18aad7011ebf4cca4a2f8746c94770b3 /cpp/src/Ice/LocalException.cpp
parentfixed registration bug (diff)
downloadice-beb7fb34ed263041178e221e66df8c2c559f3fbb.tar.bz2
ice-beb7fb34ed263041178e221e66df8c2c559f3fbb.tar.xz
ice-beb7fb34ed263041178e221e66df8c2c559f3fbb.zip
endpoint selection fixes
Diffstat (limited to 'cpp/src/Ice/LocalException.cpp')
-rw-r--r--cpp/src/Ice/LocalException.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/LocalException.cpp b/cpp/src/Ice/LocalException.cpp
index a3a5eed671b..7b83095d853 100644
--- a/cpp/src/Ice/LocalException.cpp
+++ b/cpp/src/Ice/LocalException.cpp
@@ -241,7 +241,7 @@ Ice::WrongObjectAdapterException::operator=(const WrongObjectAdapterException& e
string
Ice::WrongObjectAdapterException::toString() const
{
- string s = debugInfo() + "no suitable endpoint information available";
+ string s = debugInfo() + "wrong object adapter";
return s;
}
@@ -277,7 +277,7 @@ Ice::NoEndpointException::operator=(const NoEndpointException& ex)
string
Ice::NoEndpointException::toString() const
{
- string s = debugInfo() + "no suitable endpoint information available";
+ string s = debugInfo() + "no suitable endpoint available";
return s;
}