java -jar PathSim.jar
Error: Could not find or load main class application.PathSim
Caused by: java.lang.NoClassDefFoundError: javafx/application/Application
This error pops up when I try to run the jar file from the command prompt.
java -jar PathSim.jar
Error: Could not find or load main class application.PathSim
Caused by: java.lang.NoClassDefFoundError: javafx/application/Application
This error pops up when I try to run the jar file from the command prompt.
Check this out: https://askubuntu.com/questions/1136420/java-lang-noclassdeffounderror-javafx-application-application
If that doesn't fix your issue check to make sure that your main method is written correctly. It should be:
public static void main(String[] args){
//Code
}