JVM Crash

I just started adding a form of path correction to my project. In my code I create a VAO with the corrections, but when I try to render that VAO, the JVM crashes. Ideas?

http://pastebin.java-gaming.org/69fb04e00131f

CopyableCougar4

i see a [icode]ArrayIndexOutOfBoundsException[/icode] … probably at a [icode]java.awt.image.BufferedImage.getRGB()[/icode] call which might by called with [icode]-1[/icode] …

my guess is, somewhere around the initialization of [icode]game.territory.Tile[/icode] system tries to load an image (compressed source), which is maybe not existing or corrupted.