#Java Error Location is required.

1 messages · Page 1 of 1 (latest)

round mist
#

I keep getting this and i have tried everything from stackoverflow still doesn't work

whole flumeBOT
#

<@&987246399047479336> please have a look, thanks.

whole flumeBOT
#

While you are waiting for getting help, here are some tips to improve your experience:

Code is much easier to read if posted with syntax highlighting and proper formatting.

If nobody is calling back, that usually means that your question was not well asked and hence nobody feels confident enough answering. Try to use your time to elaborate, provide details, context, more code, examples and maybe some screenshots. With enough info, someone knows the answer for sure.

Don't forget to close your thread using the command </help-thread close:1027500463647621170> when your question has been answered, thanks.

mossy scaffold
round mist
#

`package org.example;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class Main extends Application {

@Override
public void start(Stage primaryStage) throws Exception {
    // Load the FXML file
    Parent root = FXMLLoader.load(getClass().getResource("src/main/resources/go.fxml"));



    // Set the scene and show the stage
    primaryStage.setScene(new Scene(root, 600, 400));
    primaryStage.show();


}

public static void main(String[] args) {

    launch(args);
}

}
` @mossy scaffold

mossy scaffold
#

@round mist so ?

round mist
#

new error now but thanks for the help anyways.