Why this code doesn't raise a 'ParseException' ?
DateFormat formatter = new SimpleDateFormat("dd/mm/yyyy");
try {
String date = "01/01/200'";
formatter.parse(date);
} catch (ParseException ex) {
throw new ParseException("Formato de fecha inválido",0);
}
Please explain that to me, I'm lost on that. And note the simple quote '