First of all make sure you have your class in the same directory as your main program (I don't think this is your real problem but it is just to make sure). Secondly, did you define constructors in your class? I am betting you did but you forgot to create a default constructor. Remember, if you chose to create constructors you must also define a default constructor if you intend to use one... which you are with the line you are using.
CODE
public class blah {
public blah() { System.out.println("now works"); }
public blah(int i) { System.out.println("Testing"); }
}
If I was to take out the default constructor I have defined above (the one that reads "now works") and then try to create a new object using the default constructor it would error out...
CODE
// Errors out if I only had blah(int i) defined and no default constructor.
blah myblah = new blah();
So go back and look at your class. I am sure you will find it missing a default constructor. Either put one in or back in your main program instead of using just
new WWLTableModel(); use one of your constructors that takes parameters.
Hope this makes sense to you!