hi there
Well i got a small with my JRE i think whenever i run a small program as that of hello world i get a error java.lang.NoCla ssDefFoundError
The code i used is below
Well i got a small with my JRE i think whenever i run a small program as that of hello world i get a error java.lang.NoCla ssDefFoundError
The code i used is below
Code:
import java.lang.*;
class HelloWorldApp {
public static void main(String[] args) throws Exception{
try{
System.out.println("Hello World!"); // Display the string.
}
catch(Exception e)
{
System.out.println(e);
}
finally
{
System.out.println("Over");
}
}
}
Comment