diff --git a/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldTypeDefaults.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldTypeDefaults.php
index 0deedd0..08957c1 100644
--- a/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldTypeDefaults.php
+++ b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldTypeDefaults.php
@@ -7,10 +7,11 @@
 
 namespace Drupal\migrate_drupal\Plugin\migrate\process\d6;
 
-use Drupal\migrate\MigrateException;
+use Drupal\migrate\MigrateSkipRowException;
 use Drupal\migrate\ProcessPluginBase;
 use Drupal\migrate\MigrateExecutable;
 use Drupal\migrate\Row;
+use SebastianBergmann\Exporter\Exception;
 
 /**
  * Gives us a change to set per field defaults.
@@ -30,7 +31,7 @@ public function transform($value, MigrateExecutable $migrate_executable, Row $ro
         $value = 'datetime_default';
       }
       else {
-        throw new MigrateException(sprintf('Failed to lookup %s in the static map.', var_export($value, TRUE)));
+        throw new MigrateSkipRowException();
       }
     }
     return $value;
