diff rep/handler/REPHandler.java @ 178:a097b1d619a1

*** empty log message ***
author pin
date Thu, 28 Aug 2008 22:04:48 +0900
parents 6a5fe529b192
children 4d9b32666ed2
line wrap: on
line diff
--- a/rep/handler/REPHandler.java	Thu Aug 28 22:04:11 2008 +0900
+++ b/rep/handler/REPHandler.java	Thu Aug 28 22:04:48 2008 +0900
@@ -1,8 +1,9 @@
 package rep.handler;
 
+import java.io.IOException;
 import java.nio.channels.SelectionKey;
 
 public interface REPHandler {
-	void handle(SelectionKey key);
+	void handle(SelectionKey key)throws IOException;
 
 }