diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-03-21 09:50:49 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-03-21 09:50:49 +0000 |
commit | bb547316108a917c73b80b4429fe309753ce7d22 (patch) | |
tree | 6994afb808ad7cb67a4cceb1a5a81943b1877dfe /cpp/demo/Glacier2/chat/Client.cpp | |
parent | more glacier evictor stuff (diff) | |
download | ice-bb547316108a917c73b80b4429fe309753ce7d22.tar.bz2 ice-bb547316108a917c73b80b4429fe309753ce7d22.tar.xz ice-bb547316108a917c73b80b4429fe309753ce7d22.zip |
Fixed destroySession catch block to catch ConnectionLostException.
Diffstat (limited to 'cpp/demo/Glacier2/chat/Client.cpp')
-rwxr-xr-x | cpp/demo/Glacier2/chat/Client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/demo/Glacier2/chat/Client.cpp b/cpp/demo/Glacier2/chat/Client.cpp index 660c0d6691f..14eb3428b0e 100755 --- a/cpp/demo/Glacier2/chat/Client.cpp +++ b/cpp/demo/Glacier2/chat/Client.cpp @@ -170,7 +170,7 @@ public: { router->destroySession(); } - catch(const Ice::LocalException&) + catch(const Ice::ConnectionLostException&) { // // Expected: the router closed the connection. |