Even though I
can compile fine, I get this error every time I try to execute the resulting
class file:
"Exception in thread "main"
java.lang.NoClassDefFoundError:"
Not only
that, but we are talking just a simple test app
here:
public
class TestApp
{
public static void main(String[] args)
{
System.out.println("Testing");
}
}
public static void main(String[] args)
{
System.out.println("Testing");
}
}
What
could the problem be?