/[classpath]/classpath/java/lang/InterruptedException.java
ViewVC logotype

Diff of /classpath/java/lang/InterruptedException.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.7 by mark, Tue Jan 22 22:27:00 2002 UTC revision 1.8 by ericb, Sun Feb 24 04:25:16 2002 UTC
# Line 1  Line 1 
1  /* InterruptedException.java -- exception thrown when a thread interrupts  /* InterruptedException.java -- thrown when a thread is interrupted
2     another thread which was previously sleeping, waiting, or paused in some     Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc.
    other way.  
    Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.  
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 9  GNU Classpath is free software; you can Line 7  GNU Classpath is free software; you can
7  it under the terms of the GNU General Public License as published by  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2, or (at your option)  the Free Software Foundation; either version 2, or (at your option)
9  any later version.  any later version.
10    
11  GNU Classpath is distributed in the hope that it will be useful, but  GNU Classpath is distributed in the hope that it will be useful, but
12  WITHOUT ANY WARRANTY; without even the implied warranty of  WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Line 40  exception statement from your version. * Line 38  exception statement from your version. *
38    
39  package java.lang;  package java.lang;
40    
 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3  
  * "The Java Language Specification", ISBN 0-201-63451-1  
  * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.  
  * Status:  Believed complete and correct.  
  */  
   
41  /**  /**
42   * Exceptions may be thrown by one part of a Java program and caught   * Thrown when a thread interrupts another thread which was previously
43   * by another in order to deal with exceptional conditions.   * sleeping, waiting, or paused in some other way.  See the
  * Thrown when a thread interrupts another thread which was previously  
  * sleeping, waiting, or paused in some other way.  See the  
44   * <code>interrupt</code> method of class <code>Thread</code>.   * <code>interrupt</code> method of class <code>Thread</code>.
45   *   *
  * @since JDK 1.0  
  *  
46   * @author Brian Jones   * @author Brian Jones
47   * @author Warren Levy <warrenl@cygnus.com>   * @author Warren Levy <warrenl@cygnus.com>
48   * @date September 18, 1998.   * @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
55   */   */
56  public class InterruptedException extends Exception  public class InterruptedException extends Exception
57  {  {
58    static final long serialVersionUID = 6700697376100628473L;    /**
59       * Compatible with JDK 1.0+.
60       */
61      private static final long serialVersionUID = 6700697376100628473L;
62    
63    /**    /**
64     * Create an exception without a message.     * Create an exception without a message.
65     */     */
66    public InterruptedException()    public InterruptedException()
67      {    {
68        super();    }
     }  
69    
70    /**    /**
71     * Create an exception with a message.     * Create an exception with a message.
72       *
73       *
74       * @param s the message
75     */     */
76    public InterruptedException(String s)    public InterruptedException(String s)
77      {    {
78        super(s);      super(s);
79      }    }
80  }  }

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26