Improved build.xml
[vimdoclet.git] / sample / java.lang.InterruptedException.txt
blob33589afcfdaa9091e6d00582c68513108c62bfa5
1 *java.lang.InterruptedException* *InterruptedException* Thrown when a thread is 
3 public class InterruptedException
4   extends    |java.lang.Exception|
6 |java.lang.InterruptedException_Description|
7 |java.lang.InterruptedException_Fields|
8 |java.lang.InterruptedException_Constructors|
9 |java.lang.InterruptedException_Methods|
11 ================================================================================
13 *java.lang.InterruptedException_Constructors*
14 |java.lang.InterruptedException()|Constructs an InterruptedException with no de
15 |java.lang.InterruptedException(String)|Constructs an InterruptedException with
17 *java.lang.InterruptedException_Description*
19 Thrown when a thread is waiting, sleeping, or otherwise paused for a long time 
20 and another thread interrupts it using the interrupt method in class Thread. 
23 *java.lang.InterruptedException()*
25 public InterruptedException()
27 Constructs an InterruptedException with no detail message. 
30 *java.lang.InterruptedException(String)*
32 public InterruptedException(java.lang.String s)
34 Constructs an InterruptedException with the specified detail message. 
36     s - the detail message.