I expected an error from the code below but it does no go to the catch section any ideas
Thanks
SimpleDateFormat inputVal = new SimpleDateFormat("MM/dd/yyyy");
try
{
Date date = inputVal.parse("99/99/2006");
}
catch (ParseException e1)
{
System.out.println("Invalid date..");
}