posted 13 years ago
Ignore that message; the program that runs JAR files when you double click it, javaw, has terrible error handling and shows the same error message for any throwable that's being thrown by the main method. Open a command prompt, go to the folder where the JAR file is located, and use java instead: This will show the stack trace of the actual throwable. My guess is that it will be a NoClassDefFoundError, which would indicate you're missing a few JAR files on the class path.