$Id: AlwaysFalse.java 179 2010-12-12 18:40:24Z georgosn $
96979899100101102103104105
} else { LOGGER.info("No exception handler is configured. The default ones will be used for NoHttpResponse and ConnectTimeoutException"); exceptionHandlers.put(NoHttpResponseException.class.getName(), new AlwaysTrue()); exceptionHandlers.put(ConnectTimeoutException.class.getName(), new AlwaysFalse()); } return exceptionHandlers; }
22232425262728
private ExceptionHandler handler; @Before public void prepare() { handler = new AlwaysFalse(); }