diff options
author | Marc Laukien <marc@zeroc.com> | 2002-09-20 13:12:50 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-09-20 13:12:50 +0000 |
commit | d99db9620ba052e79cd5bd40c75306f600f9c48c (patch) | |
tree | 8b5bf4d7b52f1e60469cb48e6b466e7f4b08c41f /cpp/include/Ice/Outgoing.h | |
parent | minor (diff) | |
download | ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.tar.bz2 ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.tar.xz ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.zip |
Runtime->Local
Diffstat (limited to 'cpp/include/Ice/Outgoing.h')
-rw-r--r-- | cpp/include/Ice/Outgoing.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp/include/Ice/Outgoing.h b/cpp/include/Ice/Outgoing.h index 24900fc2cc0..2c6c236dc0e 100644 --- a/cpp/include/Ice/Outgoing.h +++ b/cpp/include/Ice/Outgoing.h @@ -21,7 +21,7 @@ namespace Ice { -class RuntimeException; +class LocalException; } @@ -38,14 +38,14 @@ class ICE_API NonRepeatable public: NonRepeatable(const NonRepeatable&); - NonRepeatable(const ::Ice::RuntimeException&); - const ::Ice::RuntimeException* get() const; + NonRepeatable(const ::Ice::LocalException&); + const ::Ice::LocalException* get() const; private: const NonRepeatable& operator=(const NonRepeatable&); - std::auto_ptr< ::Ice::RuntimeException> _ex; + std::auto_ptr< ::Ice::LocalException> _ex; }; class ICE_API Outgoing : public ::IceUtil::noncopyable, public IceUtil::Monitor< IceUtil::Mutex > @@ -58,7 +58,7 @@ public: bool invoke(); // Returns true if ok, false if user exception. void finished(BasicStream&); - void finished(const ::Ice::RuntimeException&); + void finished(const ::Ice::LocalException&); BasicStream* is(); BasicStream* os(); @@ -72,7 +72,7 @@ private: const ConnectionPtr& _connection; const ReferencePtr& _reference; - std::auto_ptr< ::Ice::RuntimeException> _exception; + std::auto_ptr< ::Ice::LocalException> _exception; enum { @@ -81,7 +81,7 @@ private: StateOK, StateLocationForward, StateUserException, - StateRuntimeException, + StateLocalException, } _state; BasicStream _is; |