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/NoClassDefFoundError.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.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.
    33
    44This file is part of GNU Classpath.
     
    88the Free Software Foundation; either version 2, or (at your option)
    99any later version.
    10  
     10
    1111GNU Classpath is distributed in the hope that it will be useful, but
    1212WITHOUT ANY WARRANTY; without even the implied warranty of
     
    3939package java.lang;
    4040
    41 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
    42  * "The Java Language Specification", ISBN 0-201-63451-1
    43  * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.
    44  * Status:  Believed complete and correct.
    45  */
    46 
    4741/**
    4842 * A <code>NoClassDefFoundError</code> is thrown when a classloader or the
    4943 * Java Virtual Machine tries to load a class and no definition of the class
    5044 * 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
    5246 * because the missing class definition existed when the currently executing
    5347 * class was compiled, but now that definition cannot be found.
    5448 *
    55  * @since JDK 1.0
    56  *
    5749 * @author Brian Jones
    5850 * @author Tom Tromey <[email protected]>
    59  * @date October 1, 1998
     51 * @
    6052 */
    6153public class NoClassDefFoundError extends LinkageError
    6254{
    63   static final long serialVersionUID = 9095859863287012458L;
     55  /**
     56   * Compatible with JDK 1.0+.
     57   */
     58  private static final long serialVersionUID = 9095859863287012458L;
    6459
    6560  /**
     
    6762   */
    6863  public NoClassDefFoundError()
    69     {
    70       super();
    71     }
     64  {
     65  }
    7266
    7367  /**
    7468   * Create an error with a message.
     69
     70
    7571   */
    7672  public NoClassDefFoundError(String s)
    77     {
    78       super(s);
    79     }
     73  {
     74    super(s);
     75  }
    8076}
Note: See TracChangeset for help on using the changeset viewer.