InterruptedExceptionNameInterruptedExceptionSynopsis
DescriptionAn InterruptedException is thrown to signal that a thread that is sleeping, waiting, or otherwise paused, has been interrupted by another thread. Class Summary
public class java.lang.InterruptedException extends java.lang.Exception { // Constructors public InterruptedException(); public InterruptedException(String s); } ConstructorsInterruptedExceptionpublic InterruptedException()
public InterruptedException(String s)
Inherited Methods
See AlsoException, Thread, Throwable |
|