- 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/ObjectStreamException.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/ObjectStreamException.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 /* ObjectStreamException.java -- Superclass of all seriali sation exceptions2 Copyright (C) 1998, 2000, 2001 Free Software Foundation, Inc.1 /* ObjectStreamException.java -- Superclass of all serialiation exceptions 2 Copyright (C) 1998, 2000, 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 on-line Java Platform 1.2 API Specification. 42 * Status: Believed complete and correct. 41 /** 42 * This exception is thrown when a problem occurs during serialization. 43 * There are more specific subclasses than give more fine grained 44 * indications of the precise failure. 45 * 46 * @author Aaron M. Renn ([email protected]) 47 * @author Warren Levy <[email protected]> 48 * @since 1.1 49 * @status updated to 1.4 43 50 */ 51 52 53 54 55 56 44 57 45 /** 46 * This exception is thrown when a problem occurs during serialization. 47 * There are more specific subclasses than give more fine grained 48 * indications of the precise failure. 49 * 50 * @version 0.0 51 * 52 * @author Aaron M. Renn ([email protected]) 53 * @author Warren Levy <[email protected]> 54 * @date February 7, 2000. 55 */ 56 public abstract class ObjectStreamException extends IOException 57 { 58 /** 59 * Create an exception without a descriptive error message. 60 */ 61 protected ObjectStreamException() 62 { 63 } 58 64 59 /* 60 * Constructors 61 */ 62 63 /** 64 * Create a new ObjectStreamException without a descriptive error message 65 */ 66 protected 67 ObjectStreamException() 68 { 69 super(); 70 } 71 72 /*************************************************************************/ 73 74 /** 75 * Create a new ObjectStreamException with a descriptive error message String 76 * 77 * @param message The descriptive error message 78 */ 79 protected 80 ObjectStreamException(String message) 81 { 82 super(message); 83 } 84 65 /** 66 * Create an exception with a descriptive error message. 67 * 68 * @param message the descriptive error message 69 */ 70 protected ObjectStreamException(String message) 71 { 72 super(message); 73 } 85 74 } // class ObjectStreamException 86 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
