소스 검색

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 );
 }