1 8 package org.codehaus.spice.netserve.connection.handlers; 9 10 import java.net.Socket ; 11 12 17 class ExceptingRequestHandler 18 extends MockRequestHandler 19 { 20 static final Exception EXCEPTION = new Exception (); 21 22 protected void doPerformRequest( Socket socket ) 23 throws Exception  24 { 25 super.doPerformRequest(socket ); 26 throw EXCEPTION; 27 } 28 } 29 30 | Popular Tags |