diff options
Diffstat (limited to 'cpp/test/IceSSL/certificateVerification/Client.cpp')
-rw-r--r-- | cpp/test/IceSSL/certificateVerification/Client.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/test/IceSSL/certificateVerification/Client.cpp b/cpp/test/IceSSL/certificateVerification/Client.cpp index a35c72f13c0..8f440d8ad57 100644 --- a/cpp/test/IceSSL/certificateVerification/Client.cpp +++ b/cpp/test/IceSSL/certificateVerification/Client.cpp @@ -64,7 +64,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) pinger->ping(); cout << "ok" << endl; } - catch(const Ice::RuntimeException& ex) + catch(const Ice::LocalException& ex) { cout << ex << endl; km->shutdown(); @@ -96,7 +96,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { cout << "ok" << endl; } - catch(const Ice::RuntimeException&) + catch(const Ice::LocalException&) { km->shutdown(); test(false); @@ -117,7 +117,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { cout << "ok" << endl; } - catch(const Ice::RuntimeException&) + catch(const Ice::LocalException&) { km->shutdown(); test(false); @@ -147,7 +147,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) // generating this exception. cout << "ok" << endl; } - catch(const Ice::RuntimeException&) + catch(const Ice::LocalException&) { km->shutdown(); test(false); @@ -164,7 +164,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) pinger->ping(); cout << "ok" << endl; } - catch(const Ice::RuntimeException&) + catch(const Ice::LocalException&) { km->shutdown(); test(false); |