1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

put message from exeception in to new exeception

This commit is contained in:
David Inglis 2002-09-26 12:40:46 +00:00
parent 04d90a4425
commit b41171e8e2

View file

@ -92,7 +92,7 @@ abstract public class AbstractCLaunchDelegate implements ILaunchConfigurationDel
if ( exception != null ) {
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();