Changeset 1391 for branches/GNU/src/gcc/libjava/java/lang/LinkageError.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/lang/LinkageError.java (modified) (4 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/lang/LinkageError.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 /* LinkageError.java 2 Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc. 1 /* LinkageError.java -- thrown when classes valid at separate compile times 2 cannot be linked to each other 3 Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc. 3 4 4 5 This file is part of GNU Classpath. … … 8 9 the Free Software Foundation; either version 2, or (at your option) 9 10 any later version. 10 11 11 12 GNU Classpath is distributed in the hope that it will be useful, but 12 13 WITHOUT ANY WARRANTY; without even the implied warranty of … … 39 40 package java.lang; 40 41 41 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-342 * "The Java Language Specification", ISBN 0-201-63451-143 * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.44 * Status: Believed complete and correct.45 */46 47 42 /** 48 * Subclasses of <code>LinkageError</code> are thrown to indicate 49 * a class which is depended upon by another class has incompatibly50 * changed after the compilation of the latter class.43 * Subclasses of <code>LinkageError</code> are thrown to indicate 44 * 45 * . 51 46 * 52 * @since JDK 1.053 *54 47 * @author Brian Jones 55 48 * @author Tom Tromey <[email protected]> 56 * @ date October 1, 199849 * @ 57 50 */ 58 51 public class LinkageError extends Error 59 52 { 60 static final long serialVersionUID = 3579600108157160122L; 53 /** 54 * Compatible with JDK 1.0+. 55 */ 56 private static final long serialVersionUID = 3579600108157160122L; 61 57 62 58 /** … … 64 60 */ 65 61 public LinkageError() 66 { 67 super(); 68 } 62 { 63 } 69 64 70 65 /** 71 66 * Create an error with a message. 67 68 72 69 */ 73 70 public LinkageError(String s) 74 {75 super(s);76 }71 { 72 super(s); 73 } 77 74 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
