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/InterruptedException.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.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.
    53
    64This file is part of GNU Classpath.
     
    108the Free Software Foundation; either version 2, or (at your option)
    119any later version.
    12  
     10
    1311GNU Classpath is distributed in the hope that it will be useful, but
    1412WITHOUT ANY WARRANTY; without even the implied warranty of
     
    4139package java.lang;
    4240
    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 
    4941/**
    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
    5444 * <code>interrupt</code> method of class <code>Thread</code>.
    5545 *
    56  * @since JDK 1.0
    57  *
    5846 * @author Brian Jones
    5947 * @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
    6155 */
    6256public class InterruptedException extends Exception
    6357{
    64   static final long serialVersionUID = 6700697376100628473L;
     58  /**
     59   * Compatible with JDK 1.0+.
     60   */
     61  private static final long serialVersionUID = 6700697376100628473L;
    6562
    6663  /**
     
    6865   */
    6966  public InterruptedException()
    70     {
    71       super();
    72     }
     67  {
     68  }
    7369
    7470  /**
    7571   * Create an exception with a message.
     72
     73
     74
    7675   */
    7776  public InterruptedException(String s)
    78     {
    79       super(s);
    80     }
     77  {
     78    super(s);
     79  }
    8180}
Note: See TracChangeset for help on using the changeset viewer.