diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-11-26 14:53:59 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-11-26 14:53:59 -0500 |
commit | 781b07f5f0c07633510b645c0ba8aa7b43f80a59 (patch) | |
tree | 3d6cc9e07abd6fd696e018a08268b6b59a7ad8e7 /cpp/include/Ice/Exception.h | |
parent | fix slice2cs definition (diff) | |
download | ice-781b07f5f0c07633510b645c0ba8aa7b43f80a59.tar.bz2 ice-781b07f5f0c07633510b645c0ba8aa7b43f80a59.tar.xz ice-781b07f5f0c07633510b645c0ba8aa7b43f80a59.zip |
Fixed SystemException to no longer derive from LocalException
Diffstat (limited to 'cpp/include/Ice/Exception.h')
-rw-r--r-- | cpp/include/Ice/Exception.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/include/Ice/Exception.h b/cpp/include/Ice/Exception.h index cf2b944d2d3..74e33d152c9 100644 --- a/cpp/include/Ice/Exception.h +++ b/cpp/include/Ice/Exception.h @@ -62,12 +62,15 @@ public: typedef ::IceInternal::Handle<UserException> UserExceptionPtr; -class ICE_API SystemException : public LocalException +class ICE_API SystemException : public IceUtil::Exception { public: SystemException(const char*, int); virtual ~SystemException() throw(); + virtual std::string ice_name() const = 0; + virtual Exception* ice_clone() const = 0; + virtual void ice_throw() const = 0; }; typedef ::IceInternal::Handle<SystemException> SystemExceptionPtr; |