ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/TimeoutException.java
Revision: 1.5
Committed: Sun Aug 31 13:33:14 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_NOV3_FREEZE, JSR166_DEC9_PRE_ES_SUBMIT, JSR166_DEC9_POST_ES_SUBMIT
Changes since 1.4: +6 -9 lines
Log Message:
Removed non-standard tags and misc javadoc cleanup

File Contents

# Content
1 /*
2 * Written by Doug Lea with assistance from members of JCP JSR-166
3 * Expert Group and released to the public domain. Use, modify, and
4 * redistribute this code in any way without acknowledgement.
5 */
6
7 package java.util.concurrent;
8
9 /**
10 * Exception thrown when a blocking operation times out. Blocking
11 * operations for which a timeout is specified need a means to
12 * indicate that the timeout has occurred. For many such operations it
13 * is possible to return a value that indicates timeout; when that is
14 * not possible or desirable then <tt>TimeoutException</tt> should be
15 * declared and thrown.
16 *
17 * @since 1.5
18 * @author Doug Lea
19 */
20 public class TimeoutException extends Exception {
21 private static final long serialVersionUID = 1900926677490660714L;
22
23 /**
24 * Constructs a <tt>TimeoutException</tt> with no specified detail
25 * message.
26 */
27 public TimeoutException() {}
28
29 /**
30 * Constructs a <tt>TimeoutException</tt> with the specified detail
31 * message.
32 *
33 * @param message the detail message
34 */
35 public TimeoutException(String message) {
36 super(message);
37 }
38 }