- Joined
- Sep 21, 2015
- Messages
- 22
- Thread Author
- #1
Code:
javafx.fxml.LoadException:
unknown path:15
at javafx.fxml.FXMLLoader.constructLoadException(FXMLLoader.java:2601)
at javafx.fxml.FXMLLoader.access$700(FXMLLoader.java:103)
at javafx.fxml.FXMLLoader$ValueElement.processAttribute(FXMLLoader.java:922)
at javafx.fxml.FXMLLoader$InstanceDeclarationElement.processAttribute(FXMLLoader.java:971)
at javafx.fxml.FXMLLoader$Element.processStartElement(FXMLLoader.java:220)
at javafx.fxml.FXMLLoader$ValueElement.processStartElement(FXMLLoader.java:744)
at javafx.fxml.FXMLLoader.processStartElement(FXMLLoader.java:2707)
at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:2527)
at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2425)
at com.nullstring.craftyminer.CraftyMiner.botInterfaceProperty(rm.entrypoint:88)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.ClassNotFoundException: com.nullstring.craftyminer.ui.MineFXController
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
at javafx.fxml.FXMLLoader$ValueElement.processAttribute(FXMLLoader.java:920)
... 11 more
It appears my MineFXController class isn't being distributed from the bot store, my manifest is below.
Code:
<manifest>
<main-class>com.nullstring.craftyminer.CraftyMiner</main-class>
<name>CraftyMiner</name>
<tag-line>Crafting Guild Miner</tag-line>
<description>Mines ore in the Crafting Guild</description>
<version>1.0.5</version>
<compatibility>
<game-type>RS3</game-type>
</compatibility>
<categories>
<category>Mining</category>
</categories>
<!--Required to publish on the bot store -->
<internal-id>CraftyMiner</internal-id>
<open-source>true</open-source>
<resources>
<resource>com/nullstring/craftyminer/ui/MineGUI.fxml</resource>
</resources>
</manifest>
Does anyone know what could be causing this? My local SDK version loads correctly.