diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-06-19 16:26:19 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-06-19 16:26:19 -0230 |
commit | 6653c4246966ad65a871f8e55aab087f98b34dd9 (patch) | |
tree | 2f6c238ae05e34100ef45e6c7c60e9f756eebd09 /cpp/src/Ice/Object.cpp | |
parent | For UDP multicast bind to the multicast address rather than 0.0.0.0 unless on... (diff) | |
download | ice-6653c4246966ad65a871f8e55aab087f98b34dd9.tar.bz2 ice-6653c4246966ad65a871f8e55aab087f98b34dd9.tar.xz ice-6653c4246966ad65a871f8e55aab087f98b34dd9.zip |
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=2140 - Remove code no longer required nowa
that IceUtil::Exception inherits from std::exception
Diffstat (limited to 'cpp/src/Ice/Object.cpp')
-rw-r--r-- | cpp/src/Ice/Object.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/cpp/src/Ice/Object.cpp b/cpp/src/Ice/Object.cpp index 3b8d2a64b07..9c7d05b87f4 100644 --- a/cpp/src/Ice/Object.cpp +++ b/cpp/src/Ice/Object.cpp @@ -396,10 +396,6 @@ Ice::BlobjectAsync::__dispatch(Incoming& in, const Current& current) { ice_invoke_async(cb, inParams, current); } - catch(const Exception& ex) - { - cb->ice_exception(ex); - } catch(const ::std::exception& ex) { cb->ice_exception(ex); @@ -423,10 +419,6 @@ Ice::BlobjectArrayAsync::__dispatch(Incoming& in, const Current& current) { ice_invoke_async(cb, inParams, current); } - catch(const Exception& ex) - { - cb->ice_exception(ex); - } catch(const ::std::exception& ex) { cb->ice_exception(ex); |