d = f.parse(dateString);
}
} catch (IllegalArgumentException e) {
//i18n[CSVFileImporter.invalidDateFormat=Invalid date format given]
JOptionPane.showMessageDialog(null, stringMgr.getString("CSVFileImporter.invalidDateFormat"));
throw new UnsupportedFormatException();
} catch (ParseException pe) {
throw new UnsupportedFormatException();
}
return d;
}