summaryrefslogtreecommitdiff
path: root/includes/Handle.h
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-10-14 10:08:26 -0700
committerPixel <pixel@nobis-crew.org>2011-10-14 10:15:34 -0700
commitae657c4c8358b66d1ef867b8f90b1eaebaaa71ea (patch)
tree4fea229168e4d44b4716b423c858797327034a0e /includes/Handle.h
parent20124b259c408a3ad4427df5176553298907106c (diff)
Further tweaks to the Task class: now a Task can declare being smart, and say it's okay to get a EAgain exception, if the operation is interruptible.
Diffstat (limited to 'includes/Handle.h')
-rw-r--r--includes/Handle.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/includes/Handle.h b/includes/Handle.h
index 8275199..3339699 100644
--- a/includes/Handle.h
+++ b/includes/Handle.h
@@ -4,11 +4,6 @@
namespace Balau {
-class EAgain : public GeneralException {
- public:
- EAgain() : GeneralException("Try Again") { }
-};
-
class ENoEnt : public GeneralException {
public:
ENoEnt(const char * name) : GeneralException(String("No such file or directory: `") + name + "'") { }