/**
  * Displays an error that occured during the project creation. *
  *
  * @param e details on the error
  */
 private void reportError(final Exception e) {
   ErlLogger.error(e);
   ErrorDialog.openError(
       getShell(),
       ErlideUIPlugin.getResourceString("wizards.errors.projecterrordesc"),
       ErlideUIPlugin.getResourceString("wizards.errors.projecterrortitle"),
       PluginUtils.makeStatus(e));
 }