Hi, the Thread.sleep() method can throw an InterruptedException, and I want to be sure I know what this exception implies and therefore how to handle it. My understanding is that this exception if thrown, could mean that the sleep() has terminated before the specified duration has completed. Is this correct? It matters because my calling method wants a minimum time to ...