> java.lang.UnsupportedClassVersionError: Bad version number in .class
That means that you are running a class compiled with a later JDK on
an earlier JVM -- e.g. you've built your project with JDK 1.6 and are
trying to run it on a 1.5 JVM.
You need to either build with JDK 1.5, or tell javac to target 1.5 VMs
(and make sure that you don't use any 1.6 APIs)
Tom
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
No comments:
Post a Comment