diff options
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r-- | cpp/src/Ice/Exception.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp index 0f64228c893..baa65868bf0 100644 --- a/cpp/src/Ice/Exception.cpp +++ b/cpp/src/Ice/Exception.cpp @@ -75,6 +75,20 @@ Ice::ObjectAdapterDeactivatedException::ice_print(ostream& out) const } void +Ice::ObjectAdapterActiveException::ice_print(ostream& out) const +{ + Exception::ice_print(out); + out << ":\nobject adapter already active"; +} + +void +Ice::ObjectAdapterNotRegisteredException::ice_print(ostream& out) const +{ + Exception::ice_print(out); + out << ":\nobject adapter not registered with the locator"; +} + +void Ice::NoEndpointException::ice_print(ostream& out) const { Exception::ice_print(out); |