diff -r c54428c8f982 src/org/openbravo/mobile/core/process/DataSynchronizationErrorHandler.java
--- a/src/org/openbravo/mobile/core/process/DataSynchronizationErrorHandler.java	Tue Oct 18 08:49:36 2016 +0200
+++ b/src/org/openbravo/mobile/core/process/DataSynchronizationErrorHandler.java	Thu Oct 20 19:23:36 2016 +0200
@@ -12,7 +12,6 @@
 import java.io.StringWriter;
 
 import org.codehaus.jettison.json.JSONObject;
-import org.openbravo.base.model.Entity;
 import org.openbravo.service.db.DbUtility;
 import org.openbravo.service.importprocess.ImportEntry;
 
@@ -36,6 +35,6 @@
     return true;
   }
 
-  public abstract void handleError(Throwable e, Entity entity, JSONObject result,
+  public abstract void handleError(Throwable e, String importQualifier, JSONObject result,
       JSONObject jsonRecord);
 }
diff -r c54428c8f982 src/org/openbravo/mobile/core/process/DataSynchronizationProcess.java
--- a/src/org/openbravo/mobile/core/process/DataSynchronizationProcess.java	Tue Oct 18 08:49:36 2016 +0200
+++ b/src/org/openbravo/mobile/core/process/DataSynchronizationProcess.java	Thu Oct 20 19:23:36 2016 +0200
@@ -244,7 +244,7 @@
             setImportEntryProcessed();
           } else {
             // setImportEntryError is called in handleError
-            handleError(t, this.getEntity(), result, jsonRecord);
+            handleError(t, this.getImportQualifier(), result, jsonRecord);
           }
 
           try {
@@ -326,7 +326,8 @@
     importEntryManager.setImportEntryError(getImportEntryId(), t);
   }
 
-  private void handleError(Throwable t, Entity entity, JSONObject result, JSONObject jsonRecord) {
+  private void handleError(Throwable t, String importQualifier, JSONObject result,
+      JSONObject jsonRecord) {
     DataSynchronizationErrorHandler errorHandler = getErrorHandler();
     if (errorHandler == null) {
       try {
@@ -343,7 +344,7 @@
 
     } else {
       additionalProcessForRecordsSavedInErrorsWindow(jsonRecord);
-      errorHandler.handleError(t, entity, result, jsonRecord);
+      errorHandler.handleError(t, importQualifier, result, jsonRecord);
       if (getImportEntryId() != null) {
         if (errorHandler.setImportEntryStatusToError()) {
           // if error not handled then set error, if error handled then assume
