Sembrerebbe un errore di percorsi.

Prova così:

codice:
protected ImageIcon createImageIcon(String path) {
    java.net.URL imgURL = this.class.getResource(path);

    if (imgURL != null) {
      return new ImageIcon(imgURL);
    }
    else {
      System.err.println("Couldn't find file: " + path);
      return null;
    }
  }
se ricevi il messaggio d'errore, stai sbagliando percorso