An UnsupportedClassVersionError is thrown when the Java Virtual Machine attempts to read a class file and determines that the major and minor version numbers in the file are not supported. The canonical answer about what is UnupportedClassVersionError and how to fix it: https://stackoverflow.com/questions/10382929/how-to-fix-java-lang-unsupportedclassversionerror-unsupported-major-minor-versi
An UnsupportedClassVersionError
is thrown when the Java Virtual Machine attempts to read a class file and determines that the major and minor version numbers in the file are not supported.
It is typically fixed by using the cross-compilation options of the compiler to specify the minimum Java version the application claims compatibility with.