CIAO
My programs are compiled but do not run for example if I write the program

class Abbas
{
public static void main(String args[])
{
System.out.println("Abbas Haider");
}
}

it is compiled using javac, it even catches the errors if I make some mistake in the syntax, but when it is compiled without errors it does not run. It gives me this message:

Exception in thread "main" java.lang.NoClassDefFoundError: Abbas

Plz solve this and thanks in advance
A. Haider