Error: cant find main class

Posted by Vurb on Stack Overflow See other posts from Stack Overflow or by Vurb
Published on 2012-04-04T23:08:08Z Indexed on 2012/04/04 23:29 UTC
Read the original article Hit count: 168

Filed under:
|
|
|

ok so im a newbie java dev using netbeans IDE 7.1.1 and im watching this tutorial and right off the bat i get an error in my program even after 5 retypes to make sure its exactly the same as in the video so anyways this is the error

Error: Could not find or load main class javagame.JavaGame Java Result: 1

and this is the code i have written

package JavaGame;

import javax.swing.JFrame;

public class JavaGame extends JFrame {

public JavaGame(){
    setTitle("java game");
    setSize(500, 500);
    setResizable(false);
    setVisible(true);
    //setDefaultCloseOperation();

}

public static void main(String[] args){

}

}

© Stack Overflow or respective owner

Related posts about java

Related posts about class