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

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    1 /* SyncFailedException.java -- The sync failed (?)
    2    Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.
     1/* SyncFailedException.java --
     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 * Thrown when a file synchronization fails.
     43 *
     44 * @author Aaron M. Renn ([email protected])
     45 * @author Tom Tromey <[email protected]>
     46 * @see FileDescriptor#sync()
     47 * @since 1.1
     48 * @status updated to 1.4
    4449 */
    45 
    46 /**
    47   * I really wish I knew what caused this exception to be thrown.
    48   *
    49   * @version 0.0
    50   *
    51   * @author Aaron M. Renn ([email protected])
    52   * @author Tom Tromey <[email protected]>
    53   * @date September 24, 1998
    54   */
    5550public class SyncFailedException extends IOException
    5651{
     52
     53
     54
     55
    5756
    58 private static final long serialVersionUID = -2353342684412443330L;
    59 
    60 /*
    61  * Constructors
    62  */
    63 
    64 /**
    65   * Create a new SyncFailedException without a descriptive error message
    66   */
    67 SyncFailedException()
    68 {
    69   super();
    70 }
    71 
    72 /*************************************************************************/
    73 
    74 /**
    75   * Create a new SyncFailedException with a descriptive error message String
    76   *
    77   * @param message The descriptive error message
    78   */
    79 public
    80 SyncFailedException(String message)
    81 {
    82   super(message);
    83 }
    84 
     57  /**
     58   * Create an exception with a descriptive error message.
     59   *
     60   * @param message the descriptive error message
     61   */
     62  public SyncFailedException(String message)
     63  {
     64    super(message);
     65  }
    8566} // class SyncFailedException
    86 
Note: See TracChangeset for help on using the changeset viewer.