diff options
Diffstat (limited to 'cpp/include/IceUtil/ThreadException.h')
-rw-r--r-- | cpp/include/IceUtil/ThreadException.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cpp/include/IceUtil/ThreadException.h b/cpp/include/IceUtil/ThreadException.h index 418f8397974..8417b5516d8 100644 --- a/cpp/include/IceUtil/ThreadException.h +++ b/cpp/include/IceUtil/ThreadException.h @@ -44,6 +44,16 @@ public: virtual Exception* ice_clone() const; virtual void ice_throw() const; }; + +class ICE_UTIL_API ThreadStartedException : public Exception +{ +public: + + ThreadStartedException(const char*, int); + virtual std::string ice_name() const; + virtual Exception* ice_clone() const; + virtual void ice_throw() const; +}; } |