Compiler Error J0045

'identifier' is not a class name

The compiler detected one of the following conditions:

The following example illustrates this error:

package non.existent;
import non.existent; /* error: the package is not existant and cannot be
                        imported */
   
public class Simple {
   
   // do something meaningful
   
}