private static boolean errorAndAbort(Exception ie) {
// show the user the error and abort
//custom title, warning icon
JOptionPane.showMessageDialog(null,"Sorry, something bad happened\n. Shutting down....buuuu\n. Message: " + ie.getMessage(), "Error", JOptionPane.WARNING_MESSAGE);
EventBus.publish(new ExitApplicationMessage() );
return false;
}