@Override
public Date parseDate(String dateString) throws DateParseException {
try {
return SimpleDateFormat.getDateInstance().parse(dateString);
} catch (ParseException e) {
throw new DateParseException(dateString+" doesn't follow a date format that I recognize", e); // TODO Should be this a localized message?
}
}