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/io/EOFException.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    1 /* EOFException.java -- Unexpected end of file exception
    2    Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.
     1/* EOFException.java -- nexpected end of file exception
     2   Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.
    33
    44This file is part of GNU Classpath.
     
    88the Free Software Foundation; either version 2, or (at your option)
    99any later version.
    10  
     10
    1111GNU Classpath is distributed in the hope that it will be useful, but
    1212WITHOUT ANY WARRANTY; without even the implied warranty of
     
    3939package java.io;
    4040
    41 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
    42  * "The Java Language Specification", ISBN 0-201-63451-1
    43  * Status:  Complete to 1.1.
     41/**
     42 * This exception is thrown when the end of the file or stream was
     43 * encountered unexpectedly.  This is not the normal way that an EOF
     44 * condition is reported; such as a special value like -1 being returned.
     45 *  However, certain types of streams expecting certain data in a certain
     46 * format might reach EOF before reading their expected data pattern and
     47 * thus throw this exception.
     48 *
     49 * @author Aaron M. Renn ([email protected])
     50 * @author Tom Tromey <[email protected]>
     51 * @status updated to 1.4
    4452 */
    45 
    46 /**
    47   * This exception is thrown when the end of the file or stream was
    48   * encountered unexpectedly.  This is not the normal way that a normal
    49   * EOF condition is reported.  Normally a special value such as -1 is
    50   * returned.  However, certain types of streams expecting certain data
    51   * in a certain format might reach EOF before reading their expected
    52   * data pattern and thus throw this exception.
    53   *
    54   * @version 0.0
    55   *
    56   * @author Aaron M. Renn ([email protected])
    57   * @author Tom Tromey <[email protected]>
    58   * @date September 24, 1998
    59   */
    6053public class EOFException extends IOException
    6154{
     55
     56
     57
     58
    6259
    63 /*
    64  * Constructors
    65  */
     60  /**
     61   * Create an exception without a descriptive error message.
     62   */
     63  public EOFException()
     64  {
     65  }
    6666
    67 /**
    68   * Create a new EOFException without a descriptive error message
    69   */
    70 public
    71 EOFException()
    72 {
    73   super();
    74 }
    75 
    76 /*************************************************************************/
    77 
    78 /**
    79   * Create a new EOFException with a descriptive error message String
    80   *
    81   * @param message The descriptive error message
    82   */
    83 public
    84 EOFException(String message)
    85 {
    86   super(message);
    87 }
    88 
     67  /**
     68   * Create an exception with a descriptive error message.
     69   *
     70   * @param message the descriptive error message
     71   */
     72  public EOFException(String message)
     73  {
     74    super(message);
     75  }
    8976} // class EOFException
    90 
Note: See TracChangeset for help on using the changeset viewer.