diff options
author | Marc Laukien <marc@zeroc.com> | 2001-10-12 00:50:11 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-10-12 00:50:11 +0000 |
commit | f6cebb3284ed16cb3b8940c69b8b475855f8f0df (patch) | |
tree | 2df05a2a8b279661b964f230f23f36255cad0a8c /cpp/test/Ice/exceptions/Collocated.cpp | |
parent | slicified local exceptions (diff) | |
download | ice-f6cebb3284ed16cb3b8940c69b8b475855f8f0df.tar.bz2 ice-f6cebb3284ed16cb3b8940c69b8b475855f8f0df.tar.xz ice-f6cebb3284ed16cb3b8940c69b8b475855f8f0df.zip |
fixes
Diffstat (limited to 'cpp/test/Ice/exceptions/Collocated.cpp')
-rw-r--r-- | cpp/test/Ice/exceptions/Collocated.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/exceptions/Collocated.cpp b/cpp/test/Ice/exceptions/Collocated.cpp index 63a8fda6ccf..a453b3cb11b 100644 --- a/cpp/test/Ice/exceptions/Collocated.cpp +++ b/cpp/test/Ice/exceptions/Collocated.cpp @@ -38,7 +38,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; @@ -50,7 +50,7 @@ main(int argc, char* argv[]) { communicator->destroy(); } - catch(const Ice::LocalException& ex) + catch(const Ice::Exception& ex) { cerr << ex << endl; status = EXIT_FAILURE; |