147148149150151152153154155156157
{ return new ResteasyNTLMEngineException(e); } if (ProtocolException.class.equals(e.getClass())) { return new ResteasyProtocolException(e); } if (RedirectException.class.equals(e.getClass())) { return new ResteasyRedirectException(e); }
393394395396397398399
} @Test public void testProtocolException() throws Exception { doTest(new ResteasyProtocolException(), new ProtocolException()); }