diff options
author | Marc Laukien <marc@zeroc.com> | 2002-05-07 22:04:22 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-05-07 22:04:22 +0000 |
commit | 13e9139863f8f14722cf4c1ac8fb973af2a55a58 (patch) | |
tree | 5665fbb849e08f635fc6afc1ab0588c7ee473302 /cpp/src/Ice/Exception.cpp | |
parent | bug fix (diff) | |
download | ice-13e9139863f8f14722cf4c1ac8fb973af2a55a58.tar.bz2 ice-13e9139863f8f14722cf4c1ac8fb973af2a55a58.tar.xz ice-13e9139863f8f14722cf4c1ac8fb973af2a55a58.zip |
initial compression
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r-- | cpp/src/Ice/Exception.cpp | 15 |
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); |