Here is the exception output below. I think the program is failing to retrieve the FXML file "home.FXML"; it's failing at this line:
Parent root = FXMLLoader.load(getClass().getResource("/fxml/home.fxml"));
This is the rest of the class that loads the FXML.
public class Boorus extends Application{
public static void main(String[] args){
launch(args);
}
public void start(Stage primaryStage) throws Exception{
SQLboss.makeTables();
Parent root = FXMLLoader.load(getClass().getResource("/fxml/home.fxml"));
Scene scene = new Scene(root);
primaryStage.setScene(scene);
primaryStage.setTitle("Boorus");
primaryStage.show();
}
}
My project structure looks as pictured:
Pastebinned the Exception here: http://pastebin.com/rWkRuury