I have following scenario:
public class Benz implements Basics extends BusinessLogic {
…
}
Basics is an interface and BusinessLogic is a Java class. When I try to compile, I get following error:
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
What’s wrong with my code?
- PEACE