Reputation: 14189
I get this error:
Exception in thread "http-server" java.lang.NoClassDefFoundError: org/w3c/jigmonitor/ReplyServer
but I don't undestand why. Could someone explain why does this happen?
This is the class that causes the problem:
public class ReplyServer implements Serializable
{
public ReplyServer()
{
super();
}
}
Upvotes: 0
Views: 124
Reputation: 706
It looks like the class you're defining isn't being found by something that's trying to load it. In my experience this is caused by one of three problems:
Good luck!
(The link David posted gives a ton of information on this type of issue and the possible causes. I would recommend tucking that away for later)
Upvotes: 1