Package java.lang

Class NoSuchMethodError

All Implemented Interfaces:
Serializable

public class NoSuchMethodError
extends IncompatibleClassChangeError
Thrown when the VM notices that a program tries to reference, on a class or object, a method that does not exist.
See Also:
Serialized Form
  • Constructor Details

    • NoSuchMethodError

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

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