diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-11-25 22:23:00 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-11-25 22:23:00 +0000 |
commit | e0ac69f7b067964774a5d3d241bc5496564e37ba (patch) | |
tree | 0db95ebe5daf6d694b80060c79c0cfd6436bfffb /cpp/src/IcePack/LocatorI.cpp | |
parent | more detail for CompressionException (diff) | |
download | ice-e0ac69f7b067964774a5d3d241bc5496564e37ba.tar.bz2 ice-e0ac69f7b067964774a5d3d241bc5496564e37ba.tar.xz ice-e0ac69f7b067964774a5d3d241bc5496564e37ba.zip |
- Added Ice.NullHandleAbort property
- Fixed Locator.ice exception names to be consistent with other exceptions.
Diffstat (limited to 'cpp/src/IcePack/LocatorI.cpp')
-rw-r--r-- | cpp/src/IcePack/LocatorI.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/IcePack/LocatorI.cpp b/cpp/src/IcePack/LocatorI.cpp index ab2822d7fbf..57af5cf4a48 100644 --- a/cpp/src/IcePack/LocatorI.cpp +++ b/cpp/src/IcePack/LocatorI.cpp @@ -44,12 +44,14 @@ IcePack::LocatorI::findAdapterById(const string& id, const Ice::Current&) const } catch(const AdapterNotExistException&) { + throw Ice::AdapterNotRegisteredException(); } catch(const Ice::ObjectNotExistException&) { // // Expected if the adapter is destroyed. // + throw Ice::AdapterNotRegisteredException(); } catch(const Ice::NoEndpointException&) { |