summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Exception.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r--cpp/src/Ice/Exception.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp
index d471a7b6b55..1cdabd74505 100644
--- a/cpp/src/Ice/Exception.cpp
+++ b/cpp/src/Ice/Exception.cpp
@@ -140,13 +140,6 @@ Ice::IllegalIdentityException::ice_print(ostream& out) const
out << ":\nillegal identity: `" << id << "'";
}
-void
-Ice::LocationForwardIdentityException::ice_print(ostream& out) const
-{
- Exception::ice_print(out);
- out << ":\nidentity mismatch in location forward";
-}
-
static void
printFailedRequestData(ostream& out, const RequestFailedException& ex)
{
@@ -431,3 +424,10 @@ Ice::PluginNotFoundException::ice_print(ostream& out) const
Exception::ice_print(out);
out << ":\nplugin not found";
}
+
+void
+Ice::CollocationOptimizationException::ice_print(ostream& out) const
+{
+ Exception::ice_print(out);
+ out << ":\nrequested feature not available with collocation optimization";
+}