Skip to content

Commit

Permalink
change the message of the status object
Browse files Browse the repository at this point in the history
to the RjException message
  • Loading branch information
Valentin Georgiev committed Sep 23, 2013
1 parent d1c11d1 commit 28c1f87
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -190,7 +190,7 @@ private void startEmbedded(final RServiNodeConfig rConfig) throws CoreException
this.embeddedR = newEmbeddedR;
}
catch (final RjException e) {
throw new CoreException(new Status(IStatus.ERROR, Activator.PLUGIN_ID, "Embedded R instance could not created.", e));
throw new CoreException(new Status(IStatus.ERROR, Activator.PLUGIN_ID, e.getMessage(), e));
}
}

Expand Down

0 comments on commit 28c1f87

Please sign in to comment.