private static void layoutDialog(KongaDialog dialog, JButton resume, JButton stop) {
BorderLayoutBuilder layout = new BorderLayoutBuilder(10, 10);
layout.center("The test stopped at a breakpoint, but the server did not provide the location of the " +
"breakpoint. This is a bug.");
layout.west(CommonIcons.ERROR_24);
layout.south(layoutButtons(resume, stop, dialog.createCloseButton()));
layout.setBorder(Empty.border(10));
layout.asContentPaneFor(dialog);
dialog.pack();
dialog.setResizable(false);