summaryrefslogtreecommitdiff
path: root/cppe/include/IceE/ThreadException.h
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/include/IceE/ThreadException.h')
-rw-r--r--cppe/include/IceE/ThreadException.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/cppe/include/IceE/ThreadException.h b/cppe/include/IceE/ThreadException.h
index ba71918b422..e65a4522a4a 100644
--- a/cppe/include/IceE/ThreadException.h
+++ b/cppe/include/IceE/ThreadException.h
@@ -73,6 +73,20 @@ private:
static const char* _name;
};
+
+class ICE_API BadThreadControlException : public Exception
+{
+public:
+
+ BadThreadControlException(const char*, int);
+ virtual const std::string ice_name() const;
+ virtual Exception* ice_clone() const;
+ virtual void ice_throw() const;
+
+private:
+
+ static const char* _name;
+};
}