NoSuchMethodError

It is a checked exception, generally we experience, when we try to execute a class without main() method. Following is the hierarchy of NoSuchMethodError. Object –> Throwable –> Error –> LinkageError –> IncompatibleClassChangeError –> NoSuchMethodError Full hierarchy of exceptions is available at "Hierarchy of Exceptions – Checked/Unchecked Exceptions". Following program illustrates. public class Demo { …

NoSuchMethodError Read More »