//fail fast on the import errors... This runs in a single transaction
//so all imports done so far will get rolled-back.
//(Even if we change our minds later and run a transaction per importer
//we should fail fast to prevent further damage due to possible
//constraint violations in the db, etc.)
throw new ImportException("Import failed.", e);
}
}
break;
}
}