浏览代码

added Overflow

Nicolas Cannasse 19 年之前
父节点
当前提交
54a921d97c
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      std/neko/io/Error.hx

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

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