161162163164165166167
} if (UnsupportedHttpVersionException.class.equals(e.getClass())) { return new ResteasyUnsupportedHttpVersionException(e); } return new ResteasyHttpException("HttpException", e); }
327328329330331332333
} @Test public void testHttpException() throws Exception { doTest(new ResteasyHttpException(), new HttpException()); }