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

Diff of /classpath/java/lang/IllegalAccessError.java

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

revision 1.4 by mark, Tue Jan 22 22:26:59 2002 UTC revision 1.5 by ericb, Sun Feb 24 04:25:16 2002 UTC
# Line 1  Line 1 
1  /* IllegalAccessError.java  /* IllegalAccessError.java -- thrown when linking to an inaccessible member
2     Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.     Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 7  GNU Classpath is free software; you can Line 7  GNU Classpath is free software; you can
7  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
8  the Free Software Foundation; either version 2, or (at your option)  the Free Software Foundation; either version 2, or (at your option)
9  any later version.  any later version.
10    
11  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
12  WITHOUT ANY WARRANTY; without even the implied warranty of  WITHOUT ANY WARRANTY; without even the implied warranty of
13  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 38  exception statement from your version. *
38    
39  package java.lang;  package java.lang;
40    
 /* 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.  
  */  
   
41  /**  /**
42   * An <code>IllegalAccessError</code> is thrown when an attempt is made to   * An <code>IllegalAccessError</code> is thrown when an attempt is made to
43   * call a method, or access or modify a field that the application does not   * call a method, or access or modify a field that the application does not
44   * have access to.  Because this error is usually caught by a compiler,   * have access to.  Because this error is usually caught by a compiler,
45   * the error only occurs at runtime when the definition of a class has   * the error only occurs at runtime when the definition of a class has
46   * changed in a way that is incompatible with the previously compiled   * changed in a way that is incompatible with the previously compiled
47   * application.   * application.
48   *   *
  * @since JDK 1.0  
  *  
49   * @author Brian Jones   * @author Brian Jones
50   * @author Tom Tromey <tromey@cygnus.com>   * @author Tom Tromey <tromey@cygnus.com>
51   * @date October 1, 1998   * @status updated to 1.4
52   */   */
53  public class IllegalAccessError extends IncompatibleClassChangeError  public class IllegalAccessError extends IncompatibleClassChangeError
54  {  {
55    static final long serialVersionUID = -8988904074992417891L;    /**
56       * Compatible with JDK 1.0+.
57       */
58      private static final long serialVersionUID = -8988904074992417891L;
59    
60    /**    /**
61     * Create an error without a message.     * Create an error without a message.
62     */     */
63    public IllegalAccessError()    public IllegalAccessError()
64      {    {
65        super();    }
     }  
66    
67    /**    /**
68     * Create an error with a message.     * Create an error with a message.
69       *
70       * @param s the message
71     */     */
72    public IllegalAccessError(String s)    public IllegalAccessError(String s)
73      {    {
74        super(s);      super(s);
75      }    }
76  }  }

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