final WebMarkupContainer parent = new WebMarkupContainer(Constants.PAYLOAD_ID);
add(parent);
Label exception = new Label(Constants.NODE_ID, ex.asString());
exception.setEscapeModelStrings(false);
exception.add(new SimpleAttributeModifier("class", "exception"));
parent.add(exception);
if (ex.getLines() > 50) {
System.out.println("ex.getLines() > 50");
SimpleAttributeModifier sam = new SimpleAttributeModifier("style",
"height: 40em; overflow: scroll;");
exception.add(sam);
}
}