- 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/NoSuchFieldException.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/NoSuchFieldException.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 /* NoSuchFieldException.java -- exception thrown to indicate the class does 2 not have the specified field. 3 Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc. 1 /* NoSuchFieldException.java -- thrown when reflecting a non-existant field 2 Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc. 4 3 5 4 This file is part of GNU Classpath. … … 9 8 the Free Software Foundation; either version 2, or (at your option) 10 9 any later version. 11 10 12 11 GNU Classpath is distributed in the hope that it will be useful, but 13 12 WITHOUT ANY WARRANTY; without even the implied warranty of … … 40 39 package java.lang; 41 40 42 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-343 * "The Java Language Specification", ISBN 0-201-63451-144 * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.45 * Status: Believed complete and correct.46 */47 48 41 /** 49 * Exceptions may be thrown by one part of a Java program and caught 50 * by another in order to deal with exceptional conditions. 51 * Thrown to indicate the class does not have the specified field. 42 * Thrown to indicate the class does not have the specified field. This is 43 * caused by a variety of reflection methods, when looking up a field by name. 52 44 * 53 * @since JDK 1.154 *55 45 * @author Brian Jones 56 46 * @author Warren Levy <[email protected]> 57 * @date September 18, 1998. 47 * @since 1.1 48 * @status updated to 1.4 58 49 */ 59 50 public class NoSuchFieldException extends Exception 60 51 { 61 static final long serialVersionUID = -6143714805279938260L; 52 /** 53 * Compatible with JDK 1.1+. 54 */ 55 private static final long serialVersionUID = -6143714805279938260L; 62 56 63 57 /** … … 65 59 */ 66 60 public NoSuchFieldException() 67 { 68 super(); 69 } 61 { 62 } 70 63 71 64 /** 72 65 * Create an exception with a message. 66 67 73 68 */ 74 69 public NoSuchFieldException(String s) 75 {76 super(s);77 }70 { 71 super(s); 72 } 78 73 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
