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.h94
1 files changed, 0 insertions, 94 deletions
diff --git a/cppe/include/IceE/ThreadException.h b/cppe/include/IceE/ThreadException.h
deleted file mode 100644
index eda24d07b32..00000000000
--- a/cppe/include/IceE/ThreadException.h
+++ /dev/null
@@ -1,94 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice-E is licensed to you under the terms described in the
-// ICEE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-#ifndef ICEE_THREAD_EXCEPTION_H
-#define ICEE_THREAD_EXCEPTION_H
-
-#include <IceE/Exception.h>
-
-namespace IceUtil
-{
-
-class ICE_API ThreadSyscallException : public Exception
-{
-public:
-
- ThreadSyscallException(const char*, int, int);
- virtual std::string ice_name() const;
- virtual std::string toString() const;
- virtual Exception* ice_clone() const;
- virtual void ice_throw() const;
-
- int error() const;
-private:
-
- const int _error;
- static const char* _name;
-};
-
-class ICE_API ThreadLockedException : public Exception
-{
-public:
-
- ThreadLockedException(const char*, int);
- virtual std::string ice_name() const;
- virtual Exception* ice_clone() const;
- virtual void ice_throw() const;
-
-private:
-
- static const char* _name;
-};
-
-class ICE_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;
-
-private:
-
- static const char* _name;
-};
-
-class ICE_API ThreadNotStartedException : public Exception
-{
-public:
-
- ThreadNotStartedException(const char*, int);
- virtual std::string ice_name() const;
- virtual Exception* ice_clone() const;
- virtual void ice_throw() const;
-
-private:
-
- static const char* _name;
-};
-
-class ICE_API BadThreadControlException : public Exception
-{
-public:
-
- BadThreadControlException(const char*, int);
- virtual std::string ice_name() const;
- virtual Exception* ice_clone() const;
- virtual void ice_throw() const;
-
-private:
-
- static const char* _name;
-};
-
-}
-
-#endif
-