104105106107108109110
} if (NoHttpResponseException.class.equals(e.getClass())) { return new ResteasyNoHttpResponseException(e); } return new ResteasyIOException("IOException", e); }
345346347348349350351
} @Test public void testIOException() throws Exception { doTest(new ResteasyIOException(), new IOException()); }