summaryrefslogtreecommitdiff
path: root/cpp/test/IceSSL/certificateVerification/Client.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2004-02-19 14:38:20 +0000
committerMarc Laukien <marc@zeroc.com>2004-02-19 14:38:20 +0000
commitc07e282e58b1ba42ca121a01ba39c05784f4a3ec (patch)
treee8aadb0f2cc7a0f883d1e80bc78388f7491f5fe4 /cpp/test/IceSSL/certificateVerification/Client.cpp
parentfile dummy5.ice was initially added on branch icepack_refactoring. (diff)
downloadice-c07e282e58b1ba42ca121a01ba39c05784f4a3ec.tar.bz2
ice-c07e282e58b1ba42ca121a01ba39c05784f4a3ec.tar.xz
ice-c07e282e58b1ba42ca121a01ba39c05784f4a3ec.zip
fix
Diffstat (limited to 'cpp/test/IceSSL/certificateVerification/Client.cpp')
-rw-r--r--cpp/test/IceSSL/certificateVerification/Client.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/cpp/test/IceSSL/certificateVerification/Client.cpp b/cpp/test/IceSSL/certificateVerification/Client.cpp
index cd5e2708f76..5cfc538380f 100644
--- a/cpp/test/IceSSL/certificateVerification/Client.cpp
+++ b/cpp/test/IceSSL/certificateVerification/Client.cpp
@@ -104,8 +104,9 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
{
cout << "ok" << endl;
}
- catch(const Ice::LocalException&)
+ catch(const Ice::LocalException& ex)
{
+ cout << ex << endl;
km->shutdown();
test(false);
}
@@ -125,8 +126,9 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
{
cout << "ok" << endl;
}
- catch(const Ice::LocalException&)
+ catch(const Ice::LocalException& ex)
{
+ cout << ex << endl;
km->shutdown();
test(false);
}
@@ -155,8 +157,9 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
// generating this exception.
cout << "ok" << endl;
}
- catch(const Ice::LocalException&)
+ catch(const Ice::LocalException& ex)
{
+ cout << ex << endl;
km->shutdown();
test(false);
}
@@ -172,8 +175,9 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
pinger5->ping();
cout << "ok" << endl;
}
- catch(const Ice::LocalException&)
+ catch(const Ice::LocalException& ex)
{
+ cout << ex << endl;
km->shutdown();
test(false);
}