NoClassDefFoundError

I created a jar w/ the following code in cmd

jar cvmf test.jar manifest.txt *.class

and the manifest file reading:

Main-Class: JarTest

In the manifest file I do have an extra line. This is a swing application so when I double click it in Windows it should start. However, nothing happened so I decided to run it from the CMD and I got

Exception in thread "main" java.lang.NoClassDefFoundError: JarTest$1

at JarTest.main(JarTest.java:660)

Note: When the jar was created no error's were given.

[543 byte] By [P.F.a] at [2007-11-26 19:53:53]
# 1
That says that you are missing an inner class - which is what the $1 indicates. Did you not have it in the directory when the jar was created?
ChuckBinga at 2007-7-9 22:46:03 > top of Java-index,Desktop,Deploying...
# 2
Yeah, that was the prob, thanks
P.F.a at 2007-7-9 22:46:03 > top of Java-index,Desktop,Deploying...