- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/io/SyncFailedException.java (modified) (3 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/io/SyncFailedException.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.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. 3 3 4 4 This file is part of GNU Classpath. … … 8 8 the Free Software Foundation; either version 2, or (at your option) 9 9 any later version. 10 10 11 11 GNU Classpath is distributed in the hope that it will be useful, but 12 12 WITHOUT ANY WARRANTY; without even the implied warranty of … … 39 39 package java.io; 40 40 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 44 49 */ 45 46 /**47 * I really wish I knew what caused this exception to be thrown.48 *49 * @version 0.050 *51 * @author Aaron M. Renn ([email protected])52 * @author Tom Tromey <[email protected]>53 * @date September 24, 199854 */55 50 public class SyncFailedException extends IOException 56 51 { 52 53 54 55 57 56 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 } 85 66 } // class SyncFailedException 86 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
