Changeset 1391 for branches/GNU/src/gcc/libjava/java/io/EOFException.java
- 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/EOFException.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/EOFException.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 /* EOFException.java -- Unexpected end of file exception2 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. 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 * 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 44 52 */ 45 46 /**47 * This exception is thrown when the end of the file or stream was48 * encountered unexpectedly. This is not the normal way that a normal49 * EOF condition is reported. Normally a special value such as -1 is50 * returned. However, certain types of streams expecting certain data51 * in a certain format might reach EOF before reading their expected52 * data pattern and thus throw this exception.53 *54 * @version 0.055 *56 * @author Aaron M. Renn ([email protected])57 * @author Tom Tromey <[email protected]>58 * @date September 24, 199859 */60 53 public class EOFException extends IOException 61 54 { 55 56 57 58 62 59 63 /* 64 * Constructors 65 */ 60 /** 61 * Create an exception without a descriptive error message. 62 */ 63 public EOFException() 64 { 65 } 66 66 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 } 89 76 } // class EOFException 90 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
