Public void start(Stage stage) throws Exception{

Bruno, boa tarde.

  • Estou fazendo os exemplos do JavaFX, até a página 13 deu tudo certo, mas quando mudo para o exemplo abaixo:
    @Override
    public void start(Stage stage) throws Exception{
    /* Demais códigos*/
    iniComponents();
    iniListeners();
    @SuppressWarnings(“unused”)
    Scene scene = new Scene(pane);
    stage.setResizable(false);// remove o maximizar da tela
    stage.setTitle(“Login - GOL-FX”);//titulo da tela
    stage.show();
    iniLayout();
    LoginApp.stage = stage;
    }
    ocorre o erro abaixo:
    Exception in Application start method
    java.lang.reflect.InvocationTargetException;