fixed some formatting typos
[vimdoclet.git] / sample / java.util.concurrent.TimeoutException.txt
blob03dc0725d7a8978a3456a1ae51ffb9234941bacf
1 *java.util.concurrent.TimeoutException* *TimeoutException* Exception thrown when
3 public class TimeoutException
4   extends    |java.lang.Exception|
6 |java.util.concurrent.TimeoutException_Description|
7 |java.util.concurrent.TimeoutException_Fields|
8 |java.util.concurrent.TimeoutException_Constructors|
9 |java.util.concurrent.TimeoutException_Methods|
11 ================================================================================
13 *java.util.concurrent.TimeoutException_Constructors*
14 |java.util.concurrent.TimeoutException()|Constructs a TimeoutException with no 
15 |java.util.concurrent.TimeoutException(String)|Constructs a TimeoutException wi
17 *java.util.concurrent.TimeoutException_Description*
19 Exception thrown when a blocking operation times out. Blocking operations for 
20 which a timeout is specified need a means to indicate that the timeout has 
21 occurred. For many such operations it is possible to return a value that 
22 indicates timeout; when that is not possible or desirable then TimeoutException 
23 should be declared and thrown. 
27 *java.util.concurrent.TimeoutException()*
29 public TimeoutException()
31 Constructs a TimeoutException with no specified detail message. 
34 *java.util.concurrent.TimeoutException(String)*
36 public TimeoutException(java.lang.String message)
38 Constructs a TimeoutException with the specified detail message. 
40     message - the detail message