diff options
Diffstat (limited to 'cpp/include')
-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; |