msgPosition.setObjectPath(null);
String message = "Exception in process '" + msgPosition + "':";
if (dse.getException() != null)
{
fireEvent(new ErrorEvent(DebuggerPlugin.this, message, dse.getException()));
}
else
{
fireEvent(new ErrorEvent(DebuggerPlugin.this, message, dse.getExceptionString()));
}
// Automatically respond to the server with a 'resume' command.
// This will continue the current process (if it can be continued) with the error handling.
// If it cannot be resumed, the process must be restarted again by the user...