public StoreConnectionFailedInformationPanel(final String componentId, final String storeName,
final String exceptionMessage) {
super(componentId);
// add(new Label("title", new ResourceModel("storeConnectionFailed")));
ParamResourceModel bodyModel = new ParamResourceModel("body", this, storeName);
add(new Label("body", bodyModel));
// add(new Label("exceptionTitle", new ResourceModel("exceptionTitle")));
add(new Label("exceptionMessage", exceptionMessage));
}