When you try to launch a Java jar application from the Terminal/Command Line and you get "A Java Exception has occurred", the most likely reason is that a Runtime exception or an Error has occurred when trying to execute the program.
How to fix Exception Occurred Issue
- Go to the console and see what exception stack trace you see and try to collect more information.
The most common reason is that you are using a different version while running the Java application and you get an UnsupportedClassVersionError.
Exception in thread "main" java.lang.UnsupportedClassVersionError: Unsupported major minor version 63.0 ...Read More: https://code2care.org/q/fix-unsupported-class-version-error-major-minor-63

Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!