I am currently making a game and my software is getting pretty big (relativly, 9 classes, about 600 lines of code) and suddenly eclipse stops excecuting my program. When I try to run or debug my program it says there is an error in my code, but nowhere in my code it shows an error. When I run my code anyway, I get this:
It seems to me it can't find the main tester class, which is just:Code:java.lang.NoClassDefFoundError: tester
Caused by: java.lang.ClassNotFoundException: tester
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
Exception in thread "main"
Because when debugging, it never reaches the first line of code ("new callEDitor();"), I gues that isn't the problem. It seems eclipse can't find the tester class itself, which is odd because I haven't changed that class since yesterday and the program ran perfectly yesterday.Code:import java.awt.*;
import java.util.*;
import javax.swing.*;
public class tester
{
public static void main(String[] args)
{
new callEditor();
}
}
Can anyone point me to the problem?
