Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/lang/IllegalThreadStateException.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.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.
    54
    65This file is part of GNU Classpath.
     
    109the Free Software Foundation; either version 2, or (at your option)
    1110any later version.
    12  
     11
    1312GNU Classpath is distributed in the hope that it will be useful, but
    1413WITHOUT ANY WARRANTY; without even the implied warranty of
     
    4140package java.lang;
    4241
    43 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
    44  * "The Java Language Specification", ISBN 0-201-63451-1
    45  * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.
    46  * Status:  Believed complete and correct.
    47  */
    48 
    4942/**
    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.
    5547 *
    56  * @since JDK 1.0
    5748 * @author Brian Jones
    5849 * @author Warren Levy <[email protected]>
    59  * @date September 18, 1998.
     50 * @
    6051 */
    6152public class IllegalThreadStateException extends IllegalArgumentException
    6253{
    63   static final long serialVersionUID = -7626246362397460174L;
     54  /**
     55   * Compatible with JDK 1.0+.
     56   */
     57  private static final long serialVersionUID = -7626246362397460174L;
    6458
    6559  /**
     
    6761   */
    6862  public IllegalThreadStateException()
    69     {
    70       super();
    71     }
     63  {
     64  }
    7265
    7366  /**
    7467   * Create an exception with a message.
     68
     69
    7570   */
    7671  public IllegalThreadStateException(String s)
    77     {
    78       super(s);
    79     }
     72  {
     73    super(s);
     74  }
    8075}
Note: See TracChangeset for help on using the changeset viewer.