* stmt.c (expand_value_return): Fix typo in this change:
[official-gcc.git] / libjava / java / io / InterruptedIOException.java
blob11d922b765e78b96038f0100bc328eabc926572a
1 // InterruptedIOException.java
3 /* Copyright (C) 1998, 1999 Cygnus Solutions
5 This file is part of libgcj.
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
9 details. */
11 package java.io;
13 /**
14 * @author Tom Tromey <tromey@cygnus.com>
15 * @date September 24, 1998
18 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
19 * "The Java Language Specification", ISBN 0-201-63451-1
20 * Status: Complete to 1.1.
23 public class InterruptedIOException extends IOException
25 public InterruptedIOException ()
27 super ();
30 public InterruptedIOException (String s)
32 super (s);
35 public int bytesTransferred = 0;