FileDocCategorySizeDatePackage
InterruptedException.javaAPI DocAndroid 1.5 API1664Wed May 06 22:41:04 BST 2009java.lang

InterruptedException

public class InterruptedException extends Exception
Thrown when a waiting thread is activated before the condition it was waiting for has been satisfied.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public InterruptedException()
Constructs a new {@code InterruptedException} that includes the current stack trace.

since
Android 1.0


                        
      
        super();
    
public InterruptedException(String detailMessage)
Constructs a new {@code InterruptedException} with the current stack trace and the specified detail message.

param
detailMessage the detail message for this exception.
since
Android 1.0

        super(detailMessage);
    
Methods Summary