4950515253545556575859
ExceptionPresenterImpl ep = new ExceptionPresenterImpl(); ep.setExceptionPageName("Exception"); ep.setResponseRenderer(renderer); ep.presentException(cycle, cause); verifyControls(); assertSame(cause, page.getProperty("exception")); }
8384858687888990919293
ep.setResponseRenderer(renderer); ep.setRequestExceptionReporter(reporter); try { ep.presentException(cycle, cause); unreachable(); } catch (ApplicationRuntimeException ex) { assertSame(renderCause, ex.getRootCause());
8788899091929394959697
121122123124125126127128129130131