/[classpath]/classpath/java/lang/LinkageError.java
ViewVC logotype

Diff of /classpath/java/lang/LinkageError.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.4 by mark, Tue Jan 22 22:27:00 2002 UTC revision 1.5 by ericb, Sun Feb 24 04:25:16 2002 UTC
# Line 1  Line 1 
1  /* LinkageError.java  /* LinkageError.java -- thrown when classes valid at separate compile times
2     Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.     cannot be linked to each other
3       Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc.
4    
5  This file is part of GNU Classpath.  This file is part of GNU Classpath.
6    
# Line 7  GNU Classpath is free software; you can Line 8  GNU Classpath is free software; you can
8  it under the terms of the GNU General Public License as published by  it under the terms of the GNU General Public License as published by
9  the Free Software Foundation; either version 2, or (at your option)  the Free Software Foundation; either version 2, or (at your option)
10  any later version.  any later version.
11    
12  GNU Classpath is distributed in the hope that it will be useful, but  GNU Classpath is distributed in the hope that it will be useful, but
13  WITHOUT ANY WARRANTY; without even the implied warranty of  WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Line 38  exception statement from your version. * Line 39  exception statement from your version. *
39    
40  package java.lang;  package java.lang;
41    
 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3  
  * "The Java Language Specification", ISBN 0-201-63451-1  
  * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.  
  * Status:  Believed complete and correct.  
  */  
   
42  /**  /**
43   * Subclasses of <code>LinkageError</code> are thrown to indicate   * Subclasses of <code>LinkageError</code> are thrown to indicate that two
44   * a class which is depended upon by another class has incompatibly   * classes which were compatible at separate compilation times cannot be
45   * changed after the compilation of the latter class.   * linked to one another.
46   *   *
  * @since JDK 1.0  
  *  
47   * @author Brian Jones   * @author Brian Jones
48   * @author Tom Tromey <tromey@cygnus.com>   * @author Tom Tromey <tromey@cygnus.com>
49   * @date October 1, 1998   * @status updated to 1.4
50   */   */
51  public class LinkageError extends Error  public class LinkageError extends Error
52  {  {
53    static final long serialVersionUID = 3579600108157160122L;    /**
54       * Compatible with JDK 1.0+.
55       */
56      private static final long serialVersionUID = 3579600108157160122L;
57    
58    /**    /**
59     * Create an error without a message.     * Create an error without a message.
60     */     */
61    public LinkageError()    public LinkageError()
62      {    {
63        super();    }
     }  
64    
65    /**    /**
66     * Create an error with a message.     * Create an error with a message.
67       *
68       * @param s the message
69     */     */
70    public LinkageError(String s)    public LinkageError(String s)
71      {    {
72        super(s);      super(s);
73      }    }
74  }  }

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26