Advertisement
Guest User

Untitled

a guest
Mar 8th, 2023
430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.46 KB | None | 0 0
  1. Exception in Application start method
  2. java.lang.reflect.InvocationTargetException
  3.     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:119)
  4.     at java.base/java.lang.reflect.Method.invoke(Method.java:578)
  5.     at javafx.graphics@19.0.2/com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:465)
  6.     at javafx.graphics@19.0.2/com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:364)
  7.     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
  8.     at java.base/java.lang.reflect.Method.invoke(Method.java:578)
  9.     at java.base/sun.launcher.LauncherHelper$FXHelper.main(LauncherHelper.java:1081)
  10. Caused by: java.lang.RuntimeException: Exception in Application start method
  11.     at javafx.graphics@19.0.2/com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:901)
  12.     at javafx.graphics@19.0.2/com.sun.javafx.application.LauncherImpl.lambda$launchApplication$2(LauncherImpl.java:196)
  13.     at java.base/java.lang.Thread.run(Thread.java:1589)
  14. Caused by: java.lang.IllegalAccessError: class com.sun.javafx.fxml.FXMLLoaderHelper (in unnamed module @0x30bef79b) cannot access class com.sun.javafx.util.Utils (in module javafx.graphics) because module javafx.graphics does not export com.sun.javafx.util to unnamed module @0x30bef79b
  15.     at com.sun.javafx.fxml.FXMLLoaderHelper.<clinit>(FXMLLoaderHelper.java:38)
  16.     at javafx.fxml.FXMLLoader.<clinit>(FXMLLoader.java:2135)
  17.     at com.example.testingmedia.HelloApplication.start(HelloApplication.java:18)
  18.     at javafx.graphics@19.0.2/com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$9(LauncherImpl.java:847)
  19.     at javafx.graphics@19.0.2/com.sun.javafx.application.PlatformImpl.lambda$runAndWait$12(PlatformImpl.java:484)
  20.     at javafx.graphics@19.0.2/com.sun.javafx.application.PlatformImpl.lambda$runLater$10(PlatformImpl.java:457)
  21.     at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
  22.     at javafx.graphics@19.0.2/com.sun.javafx.application.PlatformImpl.lambda$runLater$11(PlatformImpl.java:456)
  23.     at javafx.graphics@19.0.2/com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:96)
  24.     at javafx.graphics@19.0.2/com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
  25.     at javafx.graphics@19.0.2/com.sun.glass.ui.win.WinApplication.lambda$runLoop$3(WinApplication.java:184)
  26.     ... 1 more
  27. Exception running application com.example.testingmedia.HelloApplication
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement