diff options
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r-- | cpp/src/Ice/Exception.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp index d2f924bc5a8..93861ac9b9e 100644 --- a/cpp/src/Ice/Exception.cpp +++ b/cpp/src/Ice/Exception.cpp @@ -92,6 +92,13 @@ Ice::ObjectAdapterDeactivatedException::ice_print(ostream& out) const } void +Ice::ObjectAdapterIdInUseException::ice_print(ostream& out) const +{ + Exception::ice_print(out); + out << ":\nobject adapter with id `" << id << "' is already in use"; +} + +void Ice::NoEndpointException::ice_print(ostream& out) const { Exception::ice_print(out); |