diff options
Diffstat (limited to 'cpp/test/Ice/exceptions/Server.cpp')
-rw-r--r-- | cpp/test/Ice/exceptions/Server.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/exceptions/Server.cpp b/cpp/test/Ice/exceptions/Server.cpp index 4e3a05e3328..eb62046032a 100644 --- a/cpp/test/Ice/exceptions/Server.cpp +++ b/cpp/test/Ice/exceptions/Server.cpp @@ -36,7 +36,7 @@ main(int argc, char* argv[]) communicator = Ice::initialize(argc, argv); status = run(argc, argv, communicator); } - catch(const Ice::LocalException& ex) + catch(const Ice::Exception& ex) { cerr << ex << endl; status = EXIT_FAILURE; @@ -48,7 +48,7 @@ main(int argc, char* argv[]) { communicator->destroy(); } - catch(const Ice::LocalException& ex) + catch(const Ice::Exception& ex) { cerr << ex << endl; status = EXIT_FAILURE; |