diff options
author | Marc Laukien <marc@zeroc.com> | 2002-06-27 22:27:30 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-06-27 22:27:30 +0000 |
commit | 00353fc7b5549d23effdebabcfa2b38b5156f23a (patch) | |
tree | 1971293455ebc72318efc20814f3940a2395e187 /cpp/src/Ice/Exception.cpp | |
parent | make depend (diff) | |
download | ice-00353fc7b5549d23effdebabcfa2b38b5156f23a.tar.bz2 ice-00353fc7b5549d23effdebabcfa2b38b5156f23a.tar.xz ice-00353fc7b5549d23effdebabcfa2b38b5156f23a.zip |
removed backlog cleanup code
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 daa6ee8b3fe..3d6d3bd8733 100644 --- a/cpp/src/Ice/Exception.cpp +++ b/cpp/src/Ice/Exception.cpp @@ -212,6 +212,13 @@ Ice::UnknownMessageException::ice_print(ostream& out) const } void +Ice::ConnectionNotValidatedException::ice_print(ostream& out) const +{ + Exception::ice_print(out); + out << ":\nprotocol error: received message over unvalidated connection"; +} + +void Ice::UnknownRequestIdException::ice_print(ostream& out) const { Exception::ice_print(out); |