more explanation:while writing the regular "HELLO WORD" code I always face this error-noticing that the compilation goes without any errors(I mean this error appear when running) & that I use TEXTPAD for writing java programs
The code is
class HelloWorld
{
public static void main (String args[])
{
System.out.println(“Hello World!”);
}
}