java.lang
Class IllegalAccessError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- java.lang.IncompatibleClassChangeError
-
- java.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.
-
-
Constructor Summary
Constructors Constructor and Description IllegalAccessError()
Constructs a newIllegalAccessError
that includes the current stack trace.IllegalAccessError(String detailMessage)
Constructs a newIllegalAccessError
with the current stack trace and the specified detail message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
fillInStackTrace, getMessage, getStackTrace, printStackTrace, printStackTrace, toString
-
-
-
-
Constructor Detail
-
IllegalAccessError
public IllegalAccessError()
Constructs a newIllegalAccessError
that includes the current stack trace.
-
IllegalAccessError
public IllegalAccessError(String detailMessage)
Constructs a newIllegalAccessError
with the current stack trace and the specified detail message.- Parameters:
detailMessage
- the detail message for this error.
-
-