Compiler Error J0144

Cannot find definition for interface 'identifier'

The compiler could not locate a definition for the named interface. This error usually occurs when an implemented interface is either missing or misspelled. Verify the location and name of the interface you are implementing and compile again.

The following example illustrates this error:

public class Simple implements Bogus {
   // error: the interface 'Bogus' does not exist
   
}