Package java.lang
Class IllegalAccessError
java.lang.Object
java.lang.Throwable
java.lang.Error
java.lang.LinkageError
java.lang.IncompatibleClassChangeError
java.lang.IllegalAccessError
- All Implemented Interfaces:
Serializable
public class IllegalAccessError extends IncompatibleClassChangeError
Thrown when the VM 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.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description IllegalAccessError()Constructs a newIllegalAccessErrorthat includes the current stack trace.IllegalAccessError(String detailMessage)Constructs a newIllegalAccessErrorwith the current stack trace and the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IllegalAccessError
public IllegalAccessError()Constructs a newIllegalAccessErrorthat includes the current stack trace. -
IllegalAccessError
Constructs a newIllegalAccessErrorwith the current stack trace and the specified detail message.- Parameters:
detailMessage- the detail message for this error.
-