Browse Source

added Overflow

Nicolas Cannasse 19 years ago
parent
commit
54a921d97c
1 changed files with 2 additions and 0 deletions
  1. 2 0
      std/neko/io/Error.hx

+ 2 - 0
std/neko/io/Error.hx

@@ -34,6 +34,8 @@ enum Error {
 	Blocked;
 	Blocked;
 	/** An operation has occured while the Input or Output has already been closed **/
 	/** An operation has occured while the Input or Output has already been closed **/
 	Closed;
 	Closed;
+	/** An operation is outside of its valid range **/
+	Overflow;
 	/** Other errors **/
 	/** Other errors **/
 	Custom( e : Dynamic );
 	Custom( e : Dynamic );
 }
 }