I created a japplet in java and put it on website. there are no errors in eclipse and it works fine.
on web it say "Error - click for details". when i click on it, it says 'ExceptionInIni tializerError' but no details.
does the error has to do with the code below?
on web it say "Error - click for details". when i click on it, it says 'ExceptionInIni tializerError' but no details.
does the error has to do with the code below?
Code:
public void run()
{
while(!player_class.isDEAD())
{
....
repaint();
try
{
Thread.sleep(10);
}
catch(InterruptedException e)
{
e.printStackTrace();
}
}/*** end of while loop ***/
}/*** end of run method ***/
Comment