summaryrefslogtreecommitdiff
path: root/cpp/include/IceUtil/ThreadException.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/IceUtil/ThreadException.h')
-rw-r--r--cpp/include/IceUtil/ThreadException.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/cpp/include/IceUtil/ThreadException.h b/cpp/include/IceUtil/ThreadException.h
index cf6c6289c9a..010a6ccad5c 100644
--- a/cpp/include/IceUtil/ThreadException.h
+++ b/cpp/include/IceUtil/ThreadException.h
@@ -16,20 +16,17 @@
namespace IceUtil
{
-class ICE_UTIL_API ThreadSyscallException : public Exception
+class ICE_UTIL_API ThreadSyscallException : public SyscallException
{
public:
ThreadSyscallException(const char*, int, int);
virtual std::string ice_name() const;
- virtual void ice_print(std::ostream&) const;
virtual Exception* ice_clone() const;
virtual void ice_throw() const;
- int error() const;
private:
- const int _error;
static const char* _name;
};