- 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/NoClassDefFoundError.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/NoClassDefFoundError.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 /* NoClassDefFoundError.java 2 Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.1 /* NoClassDefFoundError.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.lang; 40 40 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 41 /** 48 42 * A <code>NoClassDefFoundError</code> is thrown when a classloader or the 49 43 * Java Virtual Machine tries to load a class and no definition of the class 50 44 * can be found. This could happen when using the <code>new</code> expression 51 * or during a normal method call. The reason this would occur at runtime is 45 * or during a normal method call. The reason this would occur at runtime is 52 46 * because the missing class definition existed when the currently executing 53 47 * class was compiled, but now that definition cannot be found. 54 48 * 55 * @since JDK 1.056 *57 49 * @author Brian Jones 58 50 * @author Tom Tromey <[email protected]> 59 * @ date October 1, 199851 * @ 60 52 */ 61 53 public class NoClassDefFoundError extends LinkageError 62 54 { 63 static final long serialVersionUID = 9095859863287012458L; 55 /** 56 * Compatible with JDK 1.0+. 57 */ 58 private static final long serialVersionUID = 9095859863287012458L; 64 59 65 60 /** … … 67 62 */ 68 63 public NoClassDefFoundError() 69 { 70 super(); 71 } 64 { 65 } 72 66 73 67 /** 74 68 * Create an error with a message. 69 70 75 71 */ 76 72 public NoClassDefFoundError(String s) 77 {78 super(s);79 }73 { 74 super(s); 75 } 80 76 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
