- 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/NotActiveException.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/NotActiveException.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 /* NotActiveException.java -- Unexpected end of file exception2 Copyright (C) 1998 Free Software Foundation, Inc.1 /* NotActiveException.java -- 2 Copyright (C) 1998 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 … … 40 40 41 41 /** 42 * This exception is thrown when a problem occurs due to the fact that43 * serialization is not active.44 *45 * @version 0.046 *47 * @author Aaron M. Renn ([email protected])48 */42 * This exception is thrown when a problem occurs due to the fact that 43 * serialization is not active. 44 * 45 46 47 48 */ 49 49 public class NotActiveException extends ObjectStreamException 50 50 { 51 52 53 54 51 55 52 /* 53 * Constructors 54 */ 56 /** 57 * Create an exception without a descriptive error message. 58 */ 59 public NotActiveException() 60 { 61 } 55 62 56 /** 57 * Create a new NotActiveException without a descriptive error message 58 */ 59 public 60 NotActiveException() 61 { 62 super(); 63 } 64 65 /*************************************************************************/ 66 67 /** 68 * Create a new NotActiveException with a descriptive error message String 69 * 70 * @param message The descriptive error message 71 */ 72 public 73 NotActiveException(String message) 74 { 75 super(message); 76 } 77 63 /** 64 * Create an exception with a descriptive error message. 65 * 66 * @param message the descriptive error message 67 */ 68 public NotActiveException(String message) 69 { 70 super(message); 71 } 78 72 } // class NotActiveException 79 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
