diff options
author | Marc Laukien <marc@zeroc.com> | 2002-09-20 13:12:50 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-09-20 13:12:50 +0000 |
commit | d99db9620ba052e79cd5bd40c75306f600f9c48c (patch) | |
tree | 8b5bf4d7b52f1e60469cb48e6b466e7f4b08c41f /cpp/test/IceSSL/certificateVerification/Client.cpp | |
parent | minor (diff) | |
download | ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.tar.bz2 ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.tar.xz ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.zip |
Runtime->Local
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); |