Hi, A little limitation I have discovered in DateFormat. I'm using SimpleDateFormat, and I supply the format "HH:mm" I expect the DateFormat parsing to fail when calling parse() for Strings such as "12:13:13", since in the format there is no seconds-resolution. Instead, the parsing runs without exception and returns the time 12:13:00 (The seconds are truncated). Is thyere a way to ...