I have a java project 'eartquake' in Eclipse containing several packages. The project icon contains a red exclamation mark. I cannot find out what it means. When trying to run any package of this project I get the ClassNotFoundException error. When I run for example the AppQuake applet from package earthquake I get the error shown below. The .class file is in the build
directory of the package. It has run before. Other applets from other projects still do run. What am I doing wrong?
load: class earthquake.AppQuake.class not found.
java.lang.ClassNotFoundException: earthquake.AppQuake.class
at sun.applet.AppletClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.applet.AppletClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.applet.AppletClassLoader.loadCode(Unknown Source)
at sun.applet.AppletPanel.createApplet(Unknown Source)
at sun.applet.AppletPanel.runLoader(Unknown Source)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)