Package java.lang

Class 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 Details

    • IllegalAccessError

      public IllegalAccessError()
      Constructs a new IllegalAccessError that includes the current stack trace.
    • IllegalAccessError

      public IllegalAccessError​(String detailMessage)
      Constructs a new IllegalAccessError with the current stack trace and the specified detail message.
      Parameters:
      detailMessage - the detail message for this error.