Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/lang/NoSuchFieldException.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.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.
    43
    54This file is part of GNU Classpath.
     
    98the Free Software Foundation; either version 2, or (at your option)
    109any later version.
    11  
     10
    1211GNU Classpath is distributed in the hope that it will be useful, but
    1312WITHOUT ANY WARRANTY; without even the implied warranty of
     
    4039package java.lang;
    4140
    42 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
    43  * "The Java Language Specification", ISBN 0-201-63451-1
    44  * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.
    45  * Status:  Believed complete and correct.
    46  */
    47 
    4841/**
    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.
    5244 *
    53  * @since JDK 1.1
    54  *
    5545 * @author Brian Jones
    5646 * @author Warren Levy <[email protected]>
    57  * @date September 18, 1998.
     47 * @since 1.1
     48 * @status updated to 1.4
    5849 */
    5950public class NoSuchFieldException extends Exception
    6051{
    61   static final long serialVersionUID = -6143714805279938260L;
     52  /**
     53   * Compatible with JDK 1.1+.
     54   */
     55  private static final long serialVersionUID = -6143714805279938260L;
    6256
    6357  /**
     
    6559   */
    6660  public NoSuchFieldException()
    67     {
    68       super();
    69     }
     61  {
     62  }
    7063
    7164  /**
    7265   * Create an exception with a message.
     66
     67
    7368   */
    7469  public NoSuchFieldException(String s)
    75     {
    76       super(s);
    77     }
     70  {
     71    super(s);
     72  }
    7873}
Note: See TracChangeset for help on using the changeset viewer.