So I make a couple of images for my eclipse view plugin. Works perfectly. I wake up the next day and the program now tells me that it can no longer find those files. The files are definitely still in the same place I left them, and I haven't touched the code in 24 hrs. I've been messing with this for an hr now and I don't even know where the start debugging this, as my program was fine yesterday.
Sample.gif is in the "icons" folder of my plugin. I've tried moving it to the src folder, and that doesn't work either.
Error message:
org.eclipse.swt.SWTException: i/o error (java.io.FileNotFoundException: sample.gif (No such file or directory))
Code (when I remove this line and all lines of code that use testImage, the plugin runs again):
Image testImage = new Image(null, "sample.gif");
Anyone have any idea what could possibly be causing this, or what information i can provide for someone to give me a direction as to how to debug?