|
I assume this is a runtime error message that you get when you try to execute your program using the java command.
Where is the class that the jvm can't find? Is that class on the classpath, perhaps in a jar file? If not, it needs to be.
java -classpath <jarfile(s)>;. <main-program>
|