summaryrefslogtreecommitdiff
path: root/include/Handle.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Handle.h')
-rw-r--r--include/Handle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Handle.h b/include/Handle.h
index 1541bbe..2554892 100644
--- a/include/Handle.h
+++ b/include/Handle.h
@@ -28,8 +28,8 @@ class Handle : public Base {
public:
Handle(const Handle &);
virtual ~Handle();
- virtual ssize_t read(void *buf, size_t count) throw (IOException);
- virtual ssize_t write(const void *buf, size_t count) throw (IOException);
+ virtual ssize_t read(void *buf, size_t count) throw (IOGeneral);
+ virtual ssize_t write(const void *buf, size_t count) throw (IOGeneral);
bool IsClosed(void);
bool IsNonBlock(void);
void SetNonBlock(void);