diff options
Diffstat (limited to 'cpp/src/IceUtil/ThreadException.cpp')
-rw-r--r-- | cpp/src/IceUtil/ThreadException.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/cpp/src/IceUtil/ThreadException.cpp b/cpp/src/IceUtil/ThreadException.cpp index 709a048df30..6860de992aa 100644 --- a/cpp/src/IceUtil/ThreadException.cpp +++ b/cpp/src/IceUtil/ThreadException.cpp @@ -102,3 +102,26 @@ IceUtil::ThreadLockedException::ice_throw() const { throw *this; } + +IceUtil::ThreadStartedException::ThreadStartedException(const char* file, int line) : + Exception(file, line) +{ +} + +string +IceUtil::ThreadStartedException::ice_name() const +{ + return "IceUtil::ThreadStartedException"; +} + +IceUtil::Exception* +IceUtil::ThreadStartedException::ice_clone() const +{ + return new ThreadStartedException(*this); +} + +void +IceUtil::ThreadStartedException::ice_throw() const +{ + throw *this; +} |