} catch (Exception e) {
// If a problem occur here it is a big problem
// Display an Error dialog and End On ERROR
UnHandledErrorDialog errdialog = new UnHandledErrorDialog(parentRobotDriver, "Robot Driver ERROR",
true, "Can Not Recover from Error:\n" + e.getMessage());
errdialog.pack();
errdialog.setLocationRelativeTo(parentRobotDriver);
errdialog.setVisible(true);
}
JScrollPane editorScrollPane = new JScrollPane(editorPane);
editorScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);