/* Initialize Emergent Shutdown */
ApplicationWorkbenchAdvisor.fgPrimaryApplicationWorkbenchWindowAdvisor.getWindowConfigurer().getWorkbenchConfigurer().emergencyClose();
/* Inform the User */
IStatus errorStatus = new Status(IStatus.ERROR, "org.rssowl.ui", IStatus.ERROR, error.getMessage(), error); //$NON-NLS-1$
FatalOutOfMemoryErrorDialog dialog = new FatalOutOfMemoryErrorDialog(errorStatus);
if (dialog.open() == IDialogConstants.HELP_ID)
Program.launch("http://www.rssowl.org/help#item_6g"); //$NON-NLS-1$;
}
/* Serious problem - Exit (gives Shutdown Hook a chance to run) */
catch (Error err) {