New To Java - exceptions with sleep(long millis) method
okay, so i'm new to Java and i'm taking a course in it right now. But I was wodndering how to use the sleep(long millis) method in java.lang.Object
I want one of my methods to run every minute (60,000 milliseconds) and the sleep method throws an InterruptedException.. anyone want to enlighten me and show me how to do that?
i tried sleep(60000) throws new InterruptedException
but it didnt work.

