The cause of this exception is always the exception thrown by the renderer. @see ratpack.handling.Context#render(Object)
4041424344454647
.orElseThrow(() -> new NoSuchRendererException(toRender)); try { doRender(toRender, renderer, context); } catch (Exception e) { throw new RendererException(renderer, toRender, e); } }