diff options
author | Marc Laukien <marc@zeroc.com> | 2001-10-10 21:56:32 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-10-10 21:56:32 +0000 |
commit | 8bc95821a3163f119f5e44ff7d6510cde734ea4b (patch) | |
tree | 3e6b89c017bce15ec8c81db9931ec46aecb897c8 /cpp/src/Ice/Outgoing.cpp | |
parent | more fixes (diff) | |
download | ice-8bc95821a3163f119f5e44ff7d6510cde734ea4b.tar.bz2 ice-8bc95821a3163f119f5e44ff7d6510cde734ea4b.tar.xz ice-8bc95821a3163f119f5e44ff7d6510cde734ea4b.zip |
more exception stuff
Diffstat (limited to 'cpp/src/Ice/Outgoing.cpp')
-rw-r--r-- | cpp/src/Ice/Outgoing.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/Outgoing.cpp b/cpp/src/Ice/Outgoing.cpp index fbb10f9911b..e8811a6a076 100644 --- a/cpp/src/Ice/Outgoing.cpp +++ b/cpp/src/Ice/Outgoing.cpp @@ -20,12 +20,12 @@ using namespace IceInternal; IceInternal::NonRepeatable::NonRepeatable(const NonRepeatable& ex) { - _ex = auto_ptr<LocalException>(ex.get()->clone()); + _ex = auto_ptr<LocalException>(ex.get()->_clone()); } IceInternal::NonRepeatable::NonRepeatable(const ::Ice::LocalException& ex) { - _ex = auto_ptr<LocalException>(ex.clone()); + _ex = auto_ptr<LocalException>(ex._clone()); } const ::Ice::LocalException* @@ -134,7 +134,7 @@ IceInternal::Outgoing::invoke() // if(dynamic_cast<const CloseConnectionException*>(_exception.get())) { - _exception->raise(); + _exception->_throw(); } // @@ -258,7 +258,7 @@ IceInternal::Outgoing::finished(const LocalException& ex) if (_state == StateInProgress) { _state = StateLocalException; - _exception = auto_ptr<LocalException>(ex.clone()); + _exception = auto_ptr<LocalException>(ex._clone()); notify(); } } |