summaryrefslogtreecommitdiff
path: root/cpp/demo/Ice/hello/Client.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-10-12 00:50:11 +0000
committerMarc Laukien <marc@zeroc.com>2001-10-12 00:50:11 +0000
commitf6cebb3284ed16cb3b8940c69b8b475855f8f0df (patch)
tree2df05a2a8b279661b964f230f23f36255cad0a8c /cpp/demo/Ice/hello/Client.cpp
parentslicified local exceptions (diff)
downloadice-f6cebb3284ed16cb3b8940c69b8b475855f8f0df.tar.bz2
ice-f6cebb3284ed16cb3b8940c69b8b475855f8f0df.tar.xz
ice-f6cebb3284ed16cb3b8940c69b8b475855f8f0df.zip
fixes
Diffstat (limited to 'cpp/demo/Ice/hello/Client.cpp')
-rw-r--r--cpp/demo/Ice/hello/Client.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/demo/Ice/hello/Client.cpp b/cpp/demo/Ice/hello/Client.cpp
index ae44f23413d..c15df8ef219 100644
--- a/cpp/demo/Ice/hello/Client.cpp
+++ b/cpp/demo/Ice/hello/Client.cpp
@@ -153,7 +153,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
menu();
}
}
- catch(const Ice::LocalException& ex)
+ catch(const Ice::Exception& ex)
{
cerr << ex << endl;
}
@@ -175,7 +175,7 @@ main(int argc, char* argv[])
communicator = Ice::initializeWithProperties(properties);
status = run(argc, argv, communicator);
}
- catch(const Ice::LocalException& ex)
+ catch(const Ice::Exception& ex)
{
cerr << ex << endl;
status = EXIT_FAILURE;
@@ -187,7 +187,7 @@ main(int argc, char* argv[])
{
communicator->destroy();
}
- catch(const Ice::LocalException& ex)
+ catch(const Ice::Exception& ex)
{
cerr << ex << endl;
status = EXIT_FAILURE;