FileDocCategorySizeDatePackage
IllegalAccessError.javaAPI DocAndroid 1.5 API1793Wed May 06 22:41:04 BST 2009java.lang

IllegalAccessError

public class IllegalAccessError extends IncompatibleClassChangeError
Thrown when the virtual machine notices that a program tries access a field which is not accessible from where it is referenced.

Note that this can only occur when inconsistent class files have been loaded.

since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public IllegalAccessError()
Constructs a new {@code IllegalAccessError} that includes the current stack trace.

since
Android 1.0


                        
      
        super();
    
public IllegalAccessError(String detailMessage)
Constructs a new {@code IllegalAccessError} with the current stack trace and the specified detail message.

param
detailMessage the detail message for this error.
since
Android 1.0

        super(detailMessage);
    
Methods Summary