diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-06-06 18:31:39 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-06-06 18:31:39 +0200 |
commit | d2f6fad0a043e60ed450cf17cbdd85341cfcc6ba (patch) | |
tree | 3a5711cfe1b206f26d000a6630c721c9608e850d /cppe/include/IceE/ThreadException.h | |
parent | Bug 3014 - isAbsolute incorrect (diff) | |
download | ice-d2f6fad0a043e60ed450cf17cbdd85341cfcc6ba.tar.bz2 ice-d2f6fad0a043e60ed450cf17cbdd85341cfcc6ba.tar.xz ice-d2f6fad0a043e60ed450cf17cbdd85341cfcc6ba.zip |
Removed SL and IceE code
Diffstat (limited to 'cppe/include/IceE/ThreadException.h')
-rw-r--r-- | cppe/include/IceE/ThreadException.h | 94 |
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 8fd29f8dd89..00000000000 --- a/cppe/include/IceE/ThreadException.h +++ /dev/null @@ -1,94 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2008 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 - |