diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-03-23 15:04:28 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-03-23 15:04:28 +0000 |
commit | e18ad59fc934cb9bd47207f61a2dd90737538af7 (patch) | |
tree | e4fdf6fd8afca9af131a78326048d1d2b499f393 /cpp | |
parent | Remove SSL config (diff) | |
download | ice-e18ad59fc934cb9bd47207f61a2dd90737538af7.tar.bz2 ice-e18ad59fc934cb9bd47207f61a2dd90737538af7.tar.xz ice-e18ad59fc934cb9bd47207f61a2dd90737538af7.zip |
Minor fix to raise exception sooner than later
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/IceStorm/TwowayProxy.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/IceStorm/TwowayProxy.cpp b/cpp/src/IceStorm/TwowayProxy.cpp index 213011d44dd..24d29dc0493 100644 --- a/cpp/src/IceStorm/TwowayProxy.cpp +++ b/cpp/src/IceStorm/TwowayProxy.cpp @@ -152,6 +152,7 @@ IceStorm::OrderedTwowayProxy::publish(const EventPtr& event) catch(const Ice::LocalException& ex) { exception(ex); + throw; } } |