diff options
Diffstat (limited to 'cpp/test/Ice/retry/Client.cpp')
-rw-r--r-- | cpp/test/Ice/retry/Client.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/test/Ice/retry/Client.cpp b/cpp/test/Ice/retry/Client.cpp index f917158a746..95925cb90e4 100644 --- a/cpp/test/Ice/retry/Client.cpp +++ b/cpp/test/Ice/retry/Client.cpp @@ -49,8 +49,9 @@ main(int argc, char* argv[]) communicator = Ice::initialize(argc, argv, initData); status = run(argc, argv, communicator); } - catch(const Ice::Exception&) + catch(const Ice::Exception& ex) { + cerr << ex << endl; status = EXIT_FAILURE; } |