Created
December 10, 2020 13:13
-
-
Save ranjitvamadevan/3ff3bd746ebec838222d9b13d58dcc2b to your computer and use it in GitHub Desktop.
Reflect Invocation Exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Exception in Application start method | |
java.lang.reflect.InvocationTargetException | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) | |
at java.lang.reflect.Method.invoke(Method.java:498) | |
at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:389) | |
at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:328) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) | |
at java.lang.reflect.Method.invoke(Method.java:498) | |
at sun.launcher.LauncherHelper$FXHelper.main(LauncherHelper.java:767) | |
Caused by: java.lang.RuntimeException: Exception in Application start method | |
at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:917) | |
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$1(LauncherImpl.java:182) | |
at java.lang.Thread.run(Thread.java:748) | |
Caused by: java.lang.IllegalStateException: FirebaseApp with name [DEFAULT] doesn't exist. | |
at com.google.firebase.FirebaseApp.getInstance(FirebaseApp.java:165) | |
at com.google.firebase.FirebaseApp.getInstance(FirebaseApp.java:136) | |
at com.google.firebase.database.FirebaseDatabase.getInstance(FirebaseDatabase.java:80) | |
at firebase.product.listener.FirebaseUserListener.getUser(FirebaseUserListener.java:10) | |
at firebase.product.listener.UserController.getView(UserController.java:43) | |
at midzone.TopPane.build(TopPane.java:22) | |
at midzone.ApplicationLauncher.setLeftPane(ApplicationLauncher.java:47) | |
at midzone.ApplicationLauncher.start(ApplicationLauncher.java:17) | |
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$8(LauncherImpl.java:863) | |
at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$7(PlatformImpl.java:326) | |
at com.sun.javafx.application.PlatformImpl.lambda$null$5(PlatformImpl.java:295) | |
at java.security.AccessController.doPrivileged(Native Method) | |
at com.sun.javafx.application.PlatformImpl.lambda$runLater$6(PlatformImpl.java:294) | |
at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95) | |
at com.sun.glass.ui.win.WinApplication._runLoop(Native Method) | |
at com.sun.glass.ui.win.WinApplication.lambda$null$4(WinApplication.java:186) | |
... 1 more | |
Exception running application midzone.ApplicationLauncher | |
Process finished with exit code 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment