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.cpp15
1 files changed, 11 insertions, 4 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp
index 45e894fc92d..40256b54c27 100644
--- a/cpp/src/Ice/Exception.cpp
+++ b/cpp/src/Ice/Exception.cpp
@@ -89,17 +89,17 @@ Ice::EndpointParseException::ice_print(ostream& out) const
}
void
-Ice::ReferenceParseException::ice_print(ostream& out) const
+Ice::ProxyParseException::ice_print(ostream& out) const
{
Exception::ice_print(out);
- out << ":\nerror while parsing reference";
+ out << ":\nerror while parsing proxy";
}
void
-Ice::ReferenceIdentityException::ice_print(ostream& out) const
+Ice::LocationForwardIdentityException::ice_print(ostream& out) const
{
Exception::ice_print(out);
- out << ":\nreference identity mismatch in location forward";
+ out << ":\nidentity mismatch in location forward";
}
void
@@ -300,6 +300,13 @@ Ice::IllegalMessageSizeException::ice_print(ostream& out) const
}
void
+Ice::CompressionNotSupportedException::ice_print(ostream& out) const
+{
+ Exception::ice_print(out);
+ out << ":\nprotocol error: compressed messages not supported";
+}
+
+void
Ice::PluginExistsException::ice_print(ostream& out) const
{
Exception::ice_print(out);