diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-11-07 23:58:33 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-11-07 23:58:33 +0000 |
commit | 55a5b40f975a6853eac99db155a6dc84b3530c5b (patch) | |
tree | 00bada0565fe593effb0ddf10e44820f08451295 /cpp/src/Ice/Exception.cpp | |
parent | Fixes (diff) | |
download | ice-55a5b40f975a6853eac99db155a6dc84b3530c5b.tar.bz2 ice-55a5b40f975a6853eac99db155a6dc84b3530c5b.tar.xz ice-55a5b40f975a6853eac99db155a6dc84b3530c5b.zip |
Replaced invalid references to "adapter name" by "adapter id".
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r-- | cpp/src/Ice/Exception.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp index 7264ad82e9c..0f578d38a05 100644 --- a/cpp/src/Ice/Exception.cpp +++ b/cpp/src/Ice/Exception.cpp @@ -92,10 +92,10 @@ Ice::ObjectAdapterDeactivatedException::ice_print(ostream& out) const } void -Ice::ObjectAdapterNameInUseException::ice_print(ostream& out) const +Ice::ObjectAdapterIdInUseException::ice_print(ostream& out) const { Exception::ice_print(out); - out << ":\nobject adapter name `" << name << "' already in use"; + out << ":\nobject adapter `" << name << "' uses an id `" << id << "' which is already in use"; } void |