diff rep/handler/REPHandler.java @ 347:86935b872385

*** empty log message ***
author kono
date Tue, 14 Oct 2008 09:33:31 +0900
parents ad487e63e3c8
children 034acadc0cdc
line wrap: on
line diff
--- a/rep/handler/REPHandler.java	Tue Oct 14 09:33:31 2008 +0900
+++ b/rep/handler/REPHandler.java	Tue Oct 14 09:33:31 2008 +0900
@@ -1,12 +1,11 @@
 package rep.handler;
 
-import java.io.IOException;
 import rep.REPCommand;
 import rep.channel.REPSelectionKey;
 import rep.channel.REPSocketChannel;
 
 public interface REPHandler {
-	void handle(REPSelectionKey<REPCommand> key)throws IOException;
+	void handle(REPSelectionKey<REPCommand> key)throws Exception;
 
 	void cancel(REPSocketChannel<REPCommand> socketChannel);