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/src/IcePack/Parser.cpp | |
parent | slicified local exceptions (diff) | |
download | ice-f6cebb3284ed16cb3b8940c69b8b475855f8f0df.tar.bz2 ice-f6cebb3284ed16cb3b8940c69b8b475855f8f0df.tar.xz ice-f6cebb3284ed16cb3b8940c69b8b475855f8f0df.zip |
fixes
Diffstat (limited to 'cpp/src/IcePack/Parser.cpp')
-rw-r--r-- | cpp/src/IcePack/Parser.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IcePack/Parser.cpp b/cpp/src/IcePack/Parser.cpp index f489c698e0b..c5dd8f24656 100644 --- a/cpp/src/IcePack/Parser.cpp +++ b/cpp/src/IcePack/Parser.cpp @@ -74,7 +74,7 @@ IcePack::Parser::add(const list<string>& args) _admin->add(desc); } - catch(const LocalException& ex) + catch(const Exception& ex) { ostringstream s; s << ex; @@ -95,7 +95,7 @@ IcePack::Parser::remove(const list<string>& args) { _admin->remove(args.front()); } - catch(const LocalException& ex) + catch(const Exception& ex) { ostringstream s; s << ex; @@ -129,7 +129,7 @@ IcePack::Parser::listAll() } } } - catch(const LocalException& ex) + catch(const Exception& ex) { ostringstream s; s << ex; @@ -144,7 +144,7 @@ IcePack::Parser::shutdown() { _admin->shutdown(); } - catch(const LocalException& ex) + catch(const Exception& ex) { ostringstream s; s << ex; |