Learn to read code and use common sense.
DateFormat format = new SimpleDateFormat("dd/MM/yyyy");
Date date= format.parse("Tue Nov 12 2010");
This should be blatantly obvious that the format specified doesn't match the string being parsed. They're on adjacent lines, right next to each other. It doesn't get more straightforward than that.
You need to be able to see something like this if you are to be a successful programmer. If you can't see this, how are you ever going to find similar problems when the two lines causing problems aren't even in the same source code file?
My advice is to take some personal responsibility for learning how to read and debug code. Something like this should be a huge red flag right when you type it that the two lines of code don't match up.