- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/lang/InterruptedException.java (modified) (4 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/lang/InterruptedException.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 /* InterruptedException.java -- exception thrown when a thread interrupts 2 another thread which was previously sleeping, waiting, or paused in some 3 other way. 4 Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc. 1 /* InterruptedException.java -- thrown when a thread is interrupted 2 Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc. 5 3 6 4 This file is part of GNU Classpath. … … 10 8 the Free Software Foundation; either version 2, or (at your option) 11 9 any later version. 12 10 13 11 GNU Classpath is distributed in the hope that it will be useful, but 14 12 WITHOUT ANY WARRANTY; without even the implied warranty of … … 41 39 package java.lang; 42 40 43 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-344 * "The Java Language Specification", ISBN 0-201-63451-145 * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.46 * Status: Believed complete and correct.47 */48 49 41 /** 50 * Exceptions may be thrown by one part of a Java program and caught 51 * by another in order to deal with exceptional conditions. 52 * Thrown when a thread interrupts another thread which was previously 53 * sleeping, waiting, or paused in some other way. See the 42 * Thrown when a thread interrupts another thread which was previously 43 * sleeping, waiting, or paused in some other way. See the 54 44 * <code>interrupt</code> method of class <code>Thread</code>. 55 45 * 56 * @since JDK 1.057 *58 46 * @author Brian Jones 59 47 * @author Warren Levy <[email protected]> 60 * @date September 18, 1998. 48 * @see Object#wait() 49 * @see Object#wait(long) 50 * @see Object#wait(long, int) 51 * @see Thread#sleep(long) 52 * @see Thread#interrupt() 53 * @see Thread#interrupted() 54 * @status updated to 1.4 61 55 */ 62 56 public class InterruptedException extends Exception 63 57 { 64 static final long serialVersionUID = 6700697376100628473L; 58 /** 59 * Compatible with JDK 1.0+. 60 */ 61 private static final long serialVersionUID = 6700697376100628473L; 65 62 66 63 /** … … 68 65 */ 69 66 public InterruptedException() 70 { 71 super(); 72 } 67 { 68 } 73 69 74 70 /** 75 71 * Create an exception with a message. 72 73 74 76 75 */ 77 76 public InterruptedException(String s) 78 {79 super(s);80 }77 { 78 super(s); 79 } 81 80 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
