- 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/IllegalThreadStateException.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/IllegalThreadStateException.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 /* IllegalThreadStateException.java -- exception thrown when trying to 2 suspend or resume a Thread when it is not in an appropriate state 3 for the operation. 4 Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc. 1 /* IllegalThreadStateException.java -- thrown when trying to manipulate a 2 Thread when it is not in an appropriate state 3 Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc. 5 4 6 5 This file is part of GNU Classpath. … … 10 9 the Free Software Foundation; either version 2, or (at your option) 11 10 any later version. 12 11 13 12 GNU Classpath is distributed in the hope that it will be useful, but 14 13 WITHOUT ANY WARRANTY; without even the implied warranty of … … 41 40 package java.lang; 42 41 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 42 /** 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 * When trying to <code>suspend</code> or <code>resume</code> an object 53 * of class <code>Thread</code> when it is not in an appropriate state 54 * for the operation. 43 * Thrown When trying to manipulate a Thread which is in an inappropriate 44 * state. Since the documentation suggests that this can happen with 45 * <code>Thread.suspend</code> or <code>Thread.resume</code>, but these 46 * two methods are deprecated, this exception is likely very rare. 55 47 * 56 * @since JDK 1.057 48 * @author Brian Jones 58 49 * @author Warren Levy <[email protected]> 59 * @ date September 18, 1998.50 * @ 60 51 */ 61 52 public class IllegalThreadStateException extends IllegalArgumentException 62 53 { 63 static final long serialVersionUID = -7626246362397460174L; 54 /** 55 * Compatible with JDK 1.0+. 56 */ 57 private static final long serialVersionUID = -7626246362397460174L; 64 58 65 59 /** … … 67 61 */ 68 62 public IllegalThreadStateException() 69 { 70 super(); 71 } 63 { 64 } 72 65 73 66 /** 74 67 * Create an exception with a message. 68 69 75 70 */ 76 71 public IllegalThreadStateException(String s) 77 {78 super(s);79 }72 { 73 super(s); 74 } 80 75 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
