diff options
Diffstat (limited to 'cpp/src/Ice/LocalException.cpp')
-rw-r--r-- | cpp/src/Ice/LocalException.cpp | 4 |
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; } |