Class java.lang.IllegalAccessError
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.lang.IllegalAccessError

Object
   |
   +----Throwable
           |
           +----Error
                   |
                   +----LinkageError
                           |
                           +----IncompatibleClassChangeError
                                   |
                                   +----java.lang.IllegalAccessError

public class IllegalAccessError
extends IncompatibleClassChangeError
Thrown if an application attempts to access or modify a field, or to call a method that it does not have access to.

Normally, this error is caught by the compiler; this error can only occur at run time if the definition of a class has incompatibly changed.

Version:
1.9, 07/01/98
Author:
unascribed
Since:
JDK1.0

Constructor Index

 o java.lang.IllegalAccessError()
Constructs an IllegalAccessError with no detail message.
 o java.lang.IllegalAccessError(String)
Constructs an IllegalAccessError with the specified detail message.

Constructors

 o IllegalAccessError
public IllegalAccessError()
Constructs an IllegalAccessError with no detail message.

Since:
JDK1.0
 o IllegalAccessError
public IllegalAccessError(String s)
Constructs an IllegalAccessError with the specified detail message.

Parameters:
s - the detail message.
Since:
JDK1.0

All Packages  Class Hierarchy  This Package  Previous  Next  Index