mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-15 12:15:47 +02:00
put message from exeception in to new exeception
This commit is contained in:
parent
04d90a4425
commit
b41171e8e2
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ abstract public class AbstractCLaunchDelegate implements ILaunchConfigurationDel
|
||||||
if ( exception != null ) {
|
if ( exception != null ) {
|
||||||
newMessage = message + " : " + exception.getLocalizedMessage();
|
newMessage = message + " : " + exception.getLocalizedMessage();
|
||||||
}
|
}
|
||||||
throw new CoreException(new Status(IStatus.ERROR, getPluginID(), code, message, exception));
|
throw new CoreException(new Status(IStatus.ERROR, getPluginID(), code, newMessage, exception));
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract protected String getPluginID();
|
abstract protected String getPluginID();
|
||||||
|
|
Loading…
Add table
Reference in a new issue