Suppose i have a code where it asks the user to give some input, something like this...
for (condition) {
System.out.println("Please give some input");
System.in.read();
} //lets say this loop repeats 3 times and i face a problem during second iteration
but i want to give the user some time limit,say 60 secs and then throw an exception (in this case, i think its TimeOutException -please correct me if I am wrong).How do i do that?